mustafa-travisci/primeqa:.travis.yml@f47b708
dist: focal
language: python
python:
- "3.7"
- "3.8"
- "3.9"
cache: pip
before_install:
- pip install --upgrade pip
install:
- python3 -V
- pip install tox-travis
script:
- tox -r
- >
virtualenv install_with_all_deps &&
source ./install_with_all_deps/bin/activate &&
pip install .[all]
Build Config
{
"language": "python",
"os": [
"linux"
],
"dist": "focal",
"python": [
"3.7",
"3.8",
"3.9"
],
"cache": {
"pip": true
},
"before_install": [
"pip install --upgrade pip"
],
"install": [
"python3 -V",
"pip install tox-travis"
],
"script": [
"tox -r",
"virtualenv install_with_all_deps && source ./install_with_all_deps/bin/activate && pip install .[all]"
]
}