Skip to content

Commit

Permalink
Fix for Appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Jun 2, 2021
1 parent 77e49b2 commit 3483011
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ init:
install:
- cmd: activate condaenv
- cmd: conda install -yq numpy scipy pip pytest pandas matplotlib
- cmd: pip install pytest-cov coveralls sympy fluids coveralls sympy fuzzywuzzy pint pytz numba IPython
- cmd: pip install pytest-cov coveralls sympy fluids coveralls sympy fuzzywuzzy pint pytz numba IPython sphinx
- cmd: python setup.py install
- cmd: rmdir /Q /S chemicals

Expand Down
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

def pytest_ignore_collect(path):
path = str(path)
if 'benchmark' in path or 'manual_runner' in path or 'make_test_stubs' in path or 'plot' in path or 'prerelease' in path:
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:
return True
if 'dev' in path:
return True
Expand Down

0 comments on commit 3483011

Please sign in to comment.