mirror of
https://github.com/huashengdun/webssh.git
synced 2026-05-04 16:37:37 +00:00
21 lines
258 B
YAML
21 lines
258 B
YAML
dist: trusty
|
|
sudo: false
|
|
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install pytest pytest-cov codecov flake8
|
|
|
|
script:
|
|
- pytest --cov=webssh
|
|
- flake8
|
|
|
|
after_success:
|
|
- codecov
|