-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
42 lines (41 loc) · 1 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
sudo: required
language: python
python:
- "3.9"
services:
- mongodb
addons:
apt:
sources:
- mongodb-3.2-precise
packages:
- mongodb-org-server
# services:
# - docker
install:
- pip install --no-cache -r requirements-test.txt
- pip install --no-cache -r requirements.txt
- pip install -e .
# - docker build -t isomeric/isomer -f docker/Dockerfile.debian .
script:
- pytest tests/a_unit
- pytest tests/b_integration
- pytest tests/c_system
- travis_wait 5 pytest tests/d_oat
# - safety check -r requirements-prod.txt --full-report
# - docker run -i -t isomeric/isomer /etc/init.d/mongodb start && py.test tests
after_success:
- coveralls
notifications:
irc:
channels:
- "chat.freenode.org#hackerfleet"
on_success: change
use_notice: true
skip_join: true
template:
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} ( %{duration}, %{build_url} )"
email:
recipients:
- riot@c-base.org
on_success: change