mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 03:38:03 +01:00
18 lines
246 B
YAML
18 lines
246 B
YAML
sudo: required
|
|
dist: xenial
|
|
language: python
|
|
|
|
python:
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8-dev"
|
|
|
|
before_install:
|
|
- pip install pycodestyle
|
|
|
|
script:
|
|
- find . -name \*.py -exec pycodestyle --ignore=E501,E402,E722 {} +
|
|
- make test
|