mirror of
https://github.com/kennethreitz/requests-html.git
synced 2026-06-05 06:46:14 +00:00
27 lines
465 B
YAML
27 lines
465 B
YAML
language: python
|
||
python:
|
||
- "3.6"
|
||
- "3.7"
|
||
- "3.8"
|
||
- "3.9-dev"
|
||
|
||
matrix:
|
||
allow_failures:
|
||
- python: "3.9-dev"
|
||
|
||
# command to install dependencies
|
||
install:
|
||
- "pip install pipenv --upgrade-strategy=only-if-needed"
|
||
- "pipenv install --dev"
|
||
|
||
# command to run the dependencies
|
||
script:
|
||
- "pipenv run tests"
|
||
|
||
# command to run tests
|
||
# jobs:
|
||
# include:
|
||
# - stage: "✨ Flake8 Nit–Picking ✨"
|
||
# python: "3.6"
|
||
# script: "pipenv run flake8"
|