summaryrefslogtreecommitdiff
path: root/.drone.yml
blob: ee23e9487641331c4e524f14bfd4a3c4c1dd899c (plain)
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
80
81
82
83
84
85
86
87
88
89
90
91
---
kind: pipeline
name: python-3-7
type: docker
platform:
  os: linux
  arch: amd64

steps:
- name: test
  image: python:3.7
  environment:
    COVERALLS_SERVICE_NAME: RDFLib-Drone
    COVERALLS_REPO_TOKEN:
      from_secret: coveralls_token
  commands:
  - export COVERALLS_SERVICE_NUMBER="$DRONE_BUILD_NUMBER"
  - export COVERALLS_SERVICE_JOB_ID="$DRONE_STAGE_NAME"
  - export COVERALLS_SERVICE_JOB_NUMBER="$DRONE_BUILD_NUMBER"
  - export COVERALLS_FLAG_NAME="$DRONE_STAGE_KIND"
  - export COVERALLS_GIT_REPO="$DRONE_REPO_NAME"
  - export COVERALLS_GIT_BRANCH="$DRONE_SOURCE_BRANCH"
  - 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
  - pip install --default-timeout 60 coveralls && export HAS_COVERALLS=1
  - 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
  - coveralls

---
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