19 lines
No EOL
482 B
YAML
19 lines
No EOL
482 B
YAML
language: python
|
|
python:
|
|
- "3.5"
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install coveralls
|
|
|
|
script:
|
|
- coverage run plugtest.py
|
|
- coverage run -a coverage_test.py
|
|
- coverage run -a coverage_test_proxy.py
|
|
- coverage run -a coverage_test_reverse_proxy.py
|
|
#- coverage run -a coverage_testIPv6.py
|
|
- coverage run -a coverage_test_advanced.py
|
|
- coverage run -a coverage_test_multicast.py
|
|
- coverage run -a cache_test.py
|
|
after_success:
|
|
- coveralls |