Skip to content

fix: pipe error from tqdm in launch --background (#79) #102

fix: pipe error from tqdm in launch --background (#79)

fix: pipe error from tqdm in launch --background (#79) #102

Workflow file for this run

name: Run pytest
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9' # Follow the min version in pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e .
- name: Run tests
env:
PYTHONPATH: ${{ github.workspace }}
run: |
pytest