Skip to content

Commit 44e0d4e

Browse files
committed
Remove run_tests.py
It just wraps `pytest.main`, so that can just be used directly.
1 parent 723d82b commit 44e0d4e

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed

MANIFEST.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
include run_tests.py
21
include test_cycler.py
32
include LICENSE
43
recursive-include conda-recipe *
5-
recursive-include doc Makefile make.bat *.rst *.py
4+
recursive-include doc Makefile make.bat *.rst *.py

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ install:
2020
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
2121

2222
# Install the build and runtime dependencies of the project.
23-
- "pip install -v nose pytest pytest-cov coverage"
23+
- "pip install -v pytest pytest-cov pytest-xdist"
2424

2525
# Install the generated wheel package to test it
2626
- "python setup.py install"
@@ -31,8 +31,8 @@ build: false
3131

3232
test_script:
3333

34-
# Run unit tests with nose
35-
- "python run_tests.py"
34+
# Run unit tests with pytest
35+
- "python -m pytest -raR -n auto"
3636

3737
artifacts:
3838
# Archive the generated wheel package in the ci.appveyor.com build report.

run_tests.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)