forked from RDFLib/rdflib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
79 lines (72 loc) · 1.75 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
kind: pipeline
name: python-3-7
type: docker
platform:
os: linux
arch: amd64
steps:
- name: test
image: python:3.7
commands:
- export CI_BRANCH="$DRONE_SOURCE_BRANCH"
- apt-get update && apt-get install -y openjdk-11-jdk-headless
- pip install --default-timeout 60 -r requirements.txt
- pip install --default-timeout 60 -r requirements.dev.txt
- pip install --default-timeout 60 -r requirements.dev-extra.txt
- python setup.py install
- black --config black.toml --check ./rdflib || true
- flake8 --exit-zero rdflib
- mypy --show-error-context --show-error-codes
- ./with-fuseki.sh pytest -ra --cov
---
kind: pipeline
name: python-3-8
type: docker
platform:
os: linux
arch: amd64
steps:
- name: test
image: python:3.8
commands:
- pip install --default-timeout 60 -r requirements.txt
- pip install --default-timeout 60 -r requirements.dev.txt
- python setup.py install
- black --config black.toml --check ./rdflib || true
- flake8 --exit-zero rdflib
- pytest -ra
---
kind: pipeline
name: python-3-9
type: docker
platform:
os: linux
arch: amd64
steps:
- name: test
image: python:3.9
commands:
- pip install --default-timeout 60 -r requirements.txt
- pip install --default-timeout 60 -r requirements.dev.txt
- python setup.py install
- black --config black.toml --check ./rdflib || true
- flake8 --exit-zero rdflib
- pytest -ra
---
kind: pipeline
name: python-3-10
type: docker
platform:
os: linux
arch: amd64
steps:
- name: test
image: python:3.10
commands:
- pip install --default-timeout 60 -r requirements.txt
- pip install --default-timeout 60 -r requirements.dev.txt
- python setup.py install
- black --config black.toml --check ./rdflib | true
- flake8 --exit-zero rdflib
- pytest -ra