mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -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
|