mirror of
https://github.com/davidhalter/parso.git
synced 2026-01-08 20:43:41 +08:00
25 lines
422 B
YAML
25 lines
422 B
YAML
dist: xenial
|
|
language: python
|
|
python:
|
|
- 3.6
|
|
- 3.7
|
|
- 3.8.2
|
|
- nightly
|
|
matrix:
|
|
allow_failures:
|
|
- python: nightly
|
|
include:
|
|
- python: 3.8.2
|
|
script:
|
|
- 'pip install coverage'
|
|
- 'coverage run -m pytest'
|
|
- 'coverage report'
|
|
after_script:
|
|
- |
|
|
pip install --quiet coveralls
|
|
coveralls
|
|
install:
|
|
- pip install .[testing]
|
|
script:
|
|
- pytest
|