Skip to content

Commit 4a7591e

Browse files
committed
Make AppVeyor install dependencies from tests/requirements.txt
1 parent cc3c280 commit 4a7591e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

appveyor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ environment:
2020

2121
install:
2222
# We need wheel installed to build wheels
23-
- "%PYTHON%\\python.exe -m pip install pytest pytest-randomly pytest-cov psutil pyftpdlib mock"
23+
- "%PYTHON%\\python.exe -m pip install -U pip wheel setuptools"
24+
- "%PYTHON%\\python.exe -m pip install -r tests/requirements.txt"
2425
- "%PYTHON%\\python.exe setup.py install"
2526

2627
build: off
2728

2829
test_script:
29-
- "%PYTHON%\\python.exe -m pytest -v tests"
30+
- "%PYTHON%\\python.exe -m unittest discover -vv"

0 commit comments

Comments
 (0)