-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.travis.yml
More file actions
37 lines (30 loc) · 774 Bytes
/
.travis.yml
File metadata and controls
37 lines (30 loc) · 774 Bytes
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
dist: xenial
sudo: false
language: python
python:
# Not supporting anything declared for EOL: https://devguide.python.org/devcycle/#end-of-life-branches
# Only testing python3 per script requirements
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install:
- pip3 install -r ./AkaPAPI/requirements.txt
addons:
apt:
packages:
- dnsutils # for dig command in ./AkaPAPI/test/cibuild
before_install:
- openssl aes-256-cbc -K $encrypted_46a692ff86bf_key -iv $encrypted_46a692ff86bf_iv -in edgerc.txt.enc -out .edgerc -d
before_script:
- chmod +x ./AkaPAPI/test/cibuild
script:
- ./AkaPAPI/test/cibuild
before_deploy:
- export PATH=$PATH:$PWD
deploy:
- provider: script
skip_cleanup: true
script: echo "Hello"
on:
branch: master