mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
18 lines
210 B
YAML
18 lines
210 B
YAML
|
sudo: false
|
||
|
language: python
|
||
|
python: 2.7
|
||
|
|
||
|
# tell travis to cache ~/.cache/pip
|
||
|
cache: pip
|
||
|
|
||
|
env:
|
||
|
- TOX_ENV=packaging
|
||
|
- TOX_ENV=pep8
|
||
|
- TOX_ENV=py27
|
||
|
|
||
|
install:
|
||
|
- pip install tox
|
||
|
|
||
|
script:
|
||
|
- tox -e $TOX_ENV
|