summaryrefslogtreecommitdiff
path: root/.drone.yml
blob: 9eb8b9b5dd4a7b7b7bc84b6f65fec16b93f98dad (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
---
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"
  - bash .travis.fuseki_install_optional.sh
  - pip install --default-timeout 60 -r requirements.txt
  - pip install --default-timeout 60 -r requirements.dev.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 rdflib
  - pytest --cov
  - coveralls

---
kind: pipeline
name: python-3-8
type: docker
platform:
  os: linux
  arch: amd64

steps:
- name: test
  image: python:3.8
  commands:
  - bash .travis.fuseki_install_optional.sh
  - 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

---
kind: pipeline
name: python-3-9
type: docker
platform:
  os: linux
  arch: amd64

steps:
- name: test
  image: python:3.9
  commands:
  - bash .travis.fuseki_install_optional.sh
  - 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