@@ -37,8 +37,10 @@ before_install:
37
37
- export PATH="$HOME/miniconda/bin:$PATH"
38
38
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls true
39
39
- conda update conda
40
- - conda config --remove channels defaults --force
41
40
- conda config --add channels conda-forge --force
41
+ - conda install pycryptosat
42
+ - conda config --set safety_checks disabled
43
+ - conda config --set channel_priority strict
42
44
- conda create --name TEST python=$PY --file requirements.txt --file requirements-dev.txt
43
45
- source activate TEST
44
46
# firefox headless driver
@@ -47,9 +49,6 @@ before_install:
47
49
- tar -xzf geckodriver.tar.gz -C geckodriver
48
50
- export PATH=$PATH:$PWD/geckodriver
49
51
50
- - if [[ "$PY" == "2.7" ]]; then
51
- conda install mock ;
52
- fi
53
52
54
53
# Test source distribution.
55
54
install :
@@ -65,6 +64,7 @@ script:
65
64
fi
66
65
67
66
- if [[ $TRAVIS_JOB_NAME == 'legacy-python' ]]; then
67
+ conda install mock ;
68
68
pytest /tmp -vv --ignore=tests/notebooks/test_notebooks.py ;
69
69
fi
70
70
@@ -98,7 +98,7 @@ script:
98
98
pushd docs ;
99
99
make clean html linkcheck ;
100
100
popd ;
101
- python -m doctr deploy --build-tags --key-path github_deploy_key.enc --built-docs docs/_build/html/ $DEPLOY_DIR
101
+ python -m doctr deploy --build-tags --key-path github_deploy_key.enc --built-docs docs/_build/html/ $DEPLOY_DIR ;
102
102
fi
103
103
104
104
doctr :
0 commit comments