mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-18 23:50:51 +00:00
* Changes python to python-prior * python -> python-prior, python-experimental->python * Renames sample spec directories * Samples regnerated * Regenerates docs * Fixes test * Samples regenerated * Updates renerators list * Fixes made to python paths in pom.xml * Fixes node4 sh file paths
14 lines
305 B
YAML
14 lines
305 B
YAML
# ref: https://docs.travis-ci.com/user/languages/python
|
|
language: python
|
|
python:
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
# 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
|