-
Notifications
You must be signed in to change notification settings - Fork 6
/
.travis.yml
41 lines (35 loc) · 839 Bytes
/
.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
# (OLD / DEPRECATED -- check .github/workflows)
language: python
python:
#- '3.7'
- '3.8'
#- 3.8-dev
#- nightly
install:
- pip install -r requirements-travis-1
- pip install -r requirements-travis-2
script:
#- pytest --cov
- make -C docs/ clean
- make -C docs/ html
- touch docs/build/html/.nojekyll
# Tests
#- git clone git@github.com:mieskolainen/travis-stash.git
- git clone https://github.com/mieskolainen/travis-stash.git
- source tests/runme_trg.sh
- source tests/runme_eid.sh
- source tests/runme_brk.sh
after_success:
#- coverage run --source=httpsuite -m pytest tests/
#- coveralls
deploy:
# - provider: pypi
# user: "__token__"
# password: $PYPI_TOKEN
# skip_existing: true
- provider: pages:git
verbose: true
token: $GITHUB_TOKEN
edge: true
local_dir: ./docs/build/html/
keep_history: true