We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4aadf1 commit e9a8359Copy full SHA for e9a8359
1 file changed
.github/workflows/package.yml
@@ -33,7 +33,7 @@ jobs:
33
- name: Install dependencies
34
run: |
35
python -m pip install --upgrade pip
36
- python -m pip install mypy flake8 pytest pytest-cov boto3
+ python -m pip install mypy flake8 pytest pytest-cov pytest-xdist boto3
37
- name: Lint with flake8
38
39
# stop the build if there are Python syntax errors or undefined names
@@ -43,7 +43,7 @@ jobs:
43
mypy ./storages/
44
- name: Test with pytest
45
46
- python -m pytest --cov-report=xml --cov=storages/
+ python -m pytest -n 5 --cov-report=xml --cov=storages/
47
- uses: codecov/codecov-action@v1
48
with:
49
files: ./coverage.xml
0 commit comments