source: sasmodels/.travis.yml @ f4ae8c4

core_shell_microgelsmagnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since f4ae8c4 was 335271e, checked in by Paul Kienzle <pkienzle@…>, 6 years ago

remove restriction on pytest<4

  • Property mode set to 100644
File size: 1.7 KB
Line 
1language: python
2sudo: false
3matrix:
4  include:
5  - os: linux
6    env:
7    - PY=2.7
8    - DEPLOY=True
9  - os: linux
10    env:
11    - PY=3.6
12  - os: osx
13    language: generic
14    env:
15    - PY=2.7
16  - os: osx
17    language: generic
18    env:
19    - PY=3.5
20branches:
21  only:
22  - master
23addons:
24  apt:
25    packages: opencl-headers
26before_install:
27- if [[ $encrypted_cb04388797b6_iv ]]; then openssl aes-256-cbc -K $encrypted_cb04388797b6_key -iv $encrypted_cb04388797b6_iv
28  -in .travis/travis_rsa.enc -out .travis/travis_rsa -d; fi;
29- echo $TRAVIS_OS_NAME
30- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
31  -O miniconda.sh; fi;
32- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
33  -O miniconda.sh; fi;
34- bash miniconda.sh -b -p $HOME/miniconda
35- export PATH="$HOME/miniconda/bin:$PATH"
36- hash -r
37- conda update --yes conda
38- conda info -a
39- conda install --yes python=$PY numpy scipy matplotlib docutils setuptools pytest
40install:
41- pip install bumps
42- pip install unittest-xml-reporting tinycc
43script:
44- python --version
45#- python -m sasmodels.model_test -v dll all
46#- python -m pytest -v --cache-clear
47- python setup.py test --pytest-args -v
48before_deploy:
49- echo -e "Host danse.chem.utk.edu\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
50deploy:
51  skip_cleanup: true
52  provider: script
53  script: "/bin/sh -ex ./deploy.sh"
54  on:
55    branch: master
56    condition: $DEPLOY = True
57notifications:
58  slack:
59    secure: xNAUeSu1/it/x9Q2CSg79aw1LLc7d6mLpcqSCTeKROp71RhkFf8VjJnJm/lEbKHNC8yj5H9UHrz5DmzwJzI+6oMt4NdEeS6WvGhwGY/wCt2IcJKxw0vj1DAU04qFMS041Khwclo6jIqm76DloinXvmvsS+K/nSyQkF7q4egSlwA=
Note: See TracBrowser for help on using the repository browser.