mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-15 19:28:00 +01:00
18 lines
241 B
YAML
18 lines
241 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 {} +
|
|
- make test
|