forked from loafle/openapi-generator-original
* Remove redundant encoding definitions UTF-8 is already the default encoding in Python 3. * Remove Python3.4 related requirements * Remove dead Python version 3.5 * Add Python 3.9 to CI and test configs * Update petstore example
14 lines
305 B
YAML
14 lines
305 B
YAML
# ref: https://docs.travis-ci.com/user/languages/python
|
|
language: python
|
|
python:
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
- "3.9"
|
|
# command to install dependencies
|
|
install:
|
|
- "pip install -r requirements.txt"
|
|
- "pip install -r test-requirements.txt"
|
|
# command to run tests
|
|
script: pytest --cov=dynamic_servers
|