Use pytest_xdist for unit-test speed up in CI (#459)

* Remove unnecessary plot

* Remove unnecessary plot

* update appveyor.yml
This commit is contained in:
Atsushi Sakai
2021-01-16 14:28:24 +09:00
committed by GitHub
parent 67d7d5c610
commit 2731cdba00
7 changed files with 19 additions and 20 deletions

View File

@@ -30,6 +30,8 @@ jobs:
run: pip install mypy
- name: install pycodestyle
run: pip install pycodestyle
- name: install pytest-xdist
run: pip install pytest-xdist
- name: mypy check
run: |
find AerialNavigation -name "*.py" | xargs mypy

View File

@@ -28,13 +28,12 @@ jobs:
pip install -r requirements.txt
- name: install coverage
run: pip install coverage
- name: install mypy
run: pip install mypy
- name: install pycodestyle
run: pip install pycodestyle
- name: install pytest-xdist
run: pip install pytest-xdist
- name: mypy check
run: |
find AerialNavigation -name "*.py" | xargs mypy