mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-02-27 03:52:20 +08:00
* updated package setup * updated to use python 3.9 * fixed test runner * fixed typecheck tests * fixed discrepencies * added override to runner * updated travis * updated pre-commit hooks * updated dep
58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
language: python
|
|
cache: pip
|
|
dist: xenial
|
|
sudo: required
|
|
|
|
jobs:
|
|
include:
|
|
- name: Typecheck Django 3.0 test suite with python 3.9-dev
|
|
python: 3.9-dev
|
|
script: |
|
|
python ./scripts/typecheck_tests.py --django_version=3.0
|
|
- name: Typecheck Django 3.0 test suite with python 3.8
|
|
python: 3.8
|
|
script: |
|
|
python ./scripts/typecheck_tests.py --django_version=3.0
|
|
- name: Typecheck Django 3.0 test suite with python 3.7
|
|
python: 3.7
|
|
script: |
|
|
python ./scripts/typecheck_tests.py --django_version=3.0
|
|
- name: Typecheck Django 3.0 test suite with python 3.6
|
|
python: 3.6
|
|
script: |
|
|
python ./scripts/typecheck_tests.py --django_version=3.0
|
|
|
|
- name: Typecheck Django 2.2 test suite with python 3.9-dev
|
|
python: 3.9-dev
|
|
script: |
|
|
python ./scripts/typecheck_tests.py --django_version=2.2
|
|
- name: Typecheck Django 2.2 test suite with python 3.8
|
|
python: 3.8
|
|
script: |
|
|
python ./scripts/typecheck_tests.py --django_version=2.2
|
|
- name: Typecheck Django 2.2 test suite with python 3.7
|
|
python: 3.7
|
|
script: |
|
|
python ./scripts/typecheck_tests.py --django_version=2.2
|
|
- name: Typecheck Django 2.2 test suite with python 3.6
|
|
python: 3.6
|
|
script: |
|
|
python ./scripts/typecheck_tests.py --django_version=2.2
|
|
|
|
- name: Lint using pre-commit
|
|
python: 3.9-dev
|
|
script:
|
|
- pre-commit install && pre-commit run --all-files
|
|
|
|
- name: Run plugin test suite with python 3.9-dev
|
|
python: 3.9-dev
|
|
script: pytest
|
|
|
|
before_install: |
|
|
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable -y
|
|
sudo apt-get update
|
|
sudo apt-get install -y binutils libproj-dev gdal-bin
|
|
pip install -U pip setuptools wheel
|
|
install: |
|
|
pip install -r ./dev-requirements.txt
|