You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CoAP/.travis.yml

19 lines
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