Skip to content

Commit 3483011

Browse files
committed
Fix for Appveyor
1 parent 77e49b2 commit 3483011

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ init:
2020
install:
2121
- cmd: activate condaenv
2222
- cmd: conda install -yq numpy scipy pip pytest pandas matplotlib
23-
- cmd: pip install pytest-cov coveralls sympy fluids coveralls sympy fuzzywuzzy pint pytz numba IPython
23+
- cmd: pip install pytest-cov coveralls sympy fluids coveralls sympy fuzzywuzzy pint pytz numba IPython sphinx
2424
- cmd: python setup.py install
2525
- cmd: rmdir /Q /S chemicals
2626

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
def pytest_ignore_collect(path):
88
path = str(path)
9-
if 'benchmark' in path or 'manual_runner' in path or 'make_test_stubs' in path or 'plot' in path or 'prerelease' in path:
9+
if 'benchmark' in path or 'manual_runner' in path or 'make_test_stubs' in path or 'plot' in path or 'prerelease' in path or 'conf.py' in path:
1010
return True
1111
if 'dev' in path:
1212
return True

0 commit comments

Comments
 (0)