cti-python-stix2/.travis.yml

21 lines
300 B
YAML
Raw Normal View History

2017-02-14 21:58:07 +01:00
sudo: false
language: python
2017-04-18 10:48:04 +02:00
cache: pip
2019-09-16 20:45:01 +02:00
dist: xenial
2017-02-14 21:58:07 +01:00
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
2019-09-16 20:45:01 +02:00
- "3.7"
- "3.8"
2017-02-14 21:58:07 +01:00
install:
- pip install -U pip setuptools
- pip install tox-travis pre-commit
- pip install codecov
2017-04-05 23:27:04 +02:00
script:
- tox
2017-11-29 23:11:40 +01:00
- pre-commit run --all-files
after_success:
- codecov