We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a66fa8a commit 997cb68Copy full SHA for 997cb68
2 files changed
.github/workflows/publish.yml
.github/workflows/python-package.yml
@@ -27,8 +27,8 @@ jobs:
27
- name: Install dependencies
28
run: |
29
python -m pip install --upgrade pip
30
- python -m pip install flake8 pytest
31
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
+ python -m pip install flake8 pytest pytest-asyncio
+ pip install -e .
32
- name: Lint with flake8
33
34
# stop the build if there are Python syntax errors or undefined names
@@ -37,4 +37,4 @@ jobs:
37
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
38
- name: Test with pytest
39
40
- pytest
+ pytest -v --asyncio-mode=strict
0 commit comments