-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
33 lines (26 loc) · 1.21 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: python
env:
- "PYTHONPATH=/home/jenkins/warno-vagrant/data_store/data"
- "DATA_STORE_PATH=/home/jenkins/warno-vagrant/data_store/data/"
- "USER_PORTAL_PATH=/home/jenkins/warno-vagrant/warno_user_portal/src/"
env:
global:
# warno-docs-bot GH
secure: "cHUzL+m2ZBGAY0adl6DirWg3zUXvfuVo1meTf5sSMg0XBCoUlhpLuIrFMGgBET88G6OokfzUa8wfZHml4bkjN4N3u9ZjphvAB+zrhC5yL1cecLvo0Z9k+umfq9/Ieo4qe2oofr1TfRbqkgWViio+GSYrrhh/vEbF1zr4weaPGRY="
matrix:
include:
- python: "2.7"
env:
- PYTHON_VERSION="2.7"
- NOSE_ARGS="-v --no-skip --exclude-dir=selenium_tests --exclude-dir=warno_user_portal/src/tests --exclude-dir=warno_event_manager/src/tests"
- COVERALLS="true"
- DOC_BUILD="true"
before_install:
- pip install pytest pytest-cov nose nose-exclude
- pip install coveralls
install: source continuous_integration/install.sh
before_script: source utility_setup_scripts/set_vagrant_env.sh
script:
- nosetests --exclude-dir=selenium_tests --exclude-dir=warno_user_portal/src/tests --exclude-dir=warno_event_manager/src/tests --with-xunit
#after_success:
# - if [[ "$DOC_BUILD" == "true" ]]; then cd $TRAVIS_BUILD_DIR; source continuous_integration/build_docs.sh; fi