File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 13
13
14
14
install :
15
15
- git clone git://github.com/astropy/ci-helpers.git
16
- - source ci-helpers/travis/setup_conda_$TRAVIS_OS_NAME.sh
16
+ - source ci-helpers/travis/setup_conda.sh
17
+
18
+ # Make sure pytest-arraydiff wasn't installed by conda
19
+ - conda remove pytest-arraydiff --force || true
17
20
18
21
# Need to use develop instead of install to make sure coverage works
19
- - python setup.py develop
22
+ - pip install -e .
20
23
21
24
script :
22
25
- python -c 'import pytest_arraydiff.plugin'
Original file line number Diff line number Diff line change @@ -217,7 +217,6 @@ def pytest_runtest_setup(self, item):
217
217
compare = item .get_marker ('array_compare' )
218
218
else :
219
219
compare = item .get_closest_marker ('array_compare' )
220
-
221
220
222
221
if compare is None :
223
222
return
You can’t perform that action at this time.
0 commit comments