-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (26 loc) · 706 Bytes
/
.travis.yml
File metadata and controls
29 lines (26 loc) · 706 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
language: python
sudo: false
python:
- 2.7
- 3.5
- 3.6
- 3.7
- 3.8
- pypy
- pypy3
cache: pip
install:
- pip install -r requirements-dev.txt
script:
- coverage run tests/DjangoTest/runners/common_runner.py
- coverage run -a tests/DjangoTest/runners/drf_test_runner.py
- coverage run -a tests/DjangoTest/runners/custom_masking_test_runner.py
- coverage run -a tests/DjangoTest/runners/masking_disabled_test_runner.py
- coverage run -a tests/DjangoTest/runners/model_test_runner.py
- coverage run -a tests/DjangoTest/runners/notification_test_runner.py
- coverage run -a tests/flask-test-runner.py
notifications:
email:
- sonunitw12@gmail.com
after_success:
coveralls