-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
44 lines (38 loc) · 1.23 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
34
35
36
37
38
39
40
41
42
43
44
# Config file for automatic testing at travis-ci.org
language: python
dist: xenial
python:
- 3.7
addons:
firefox: "latest"
before_install:
- echo -e "machine github.com\n login $CI_USER_TOKEN" > ~/.netrc
# for firefox geckodriver setup
- wget https://github.com/mozilla/geckodriver/releases/download/v0.28.0/geckodriver-v0.28.0-linux64.tar.gz
- mkdir geckodriver
- tar -xzf geckodriver-v0.28.0-linux64.tar.gz -C geckodriver
- export PATH=$PATH:$PWD/geckodriver
# Command to run tests, e.g. python setup.py test
install:
- pip install pipenv
- pipenv install --system --deploy --ignore-pipfile
stages:
- test
- name: answers
if: branch = master
jobs:
include:
- stage: test
script: pytest -v
install:
- pipenv install --dev --ignore-pipfile --deploy
before_script: # code coverage tool
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script: pytest --cov-report xml --cov-report term
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
- stage: answers
script:
- python3 -m final_project