AMD64
Python: 3.8
Git
PYTHONPATH=.
This is the configuration for all of build #7, including this job
mustafa-travisci/mo-sql-parsing:.travis.yml@07dc756
---
language: python
python:
- "3.7"
- "3.8"
- "3.9"
group: dev
install:
- pip install .
- pip install -r tests/requirements.txt
env:
- PYTHONPATH=.
# command to run tests
script:
- python -Werror tests/smoke_test.py
- python -m unittest discover tests
- echo test
Build Config
{
"language": "python",
"os": [
"linux"
],
"dist": "xenial",
"python": [
"3.7",
"3.8",
"3.9"
],
"group": "dev",
"install": [
"pip install .",
"pip install -r tests/requirements.txt"
],
"env": {
"jobs": [
{
"PYTHONPATH": "."
}
]
},
"script": [
"python -Werror tests/smoke_test.py",
"python -m unittest discover tests",
"echo test"
]
}