blob: e1ff383a1ce5be9b9a392c7d0b7b952999730bad (
plain) (
blame)
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
|
version: 2.1
jobs:
run-tests-36:
docker:
- image: cimg/python:3.6
steps:
- checkout
- run:
name: "Install test deps"
command: "pip install .[test]"
- run:
name: "Run tests"
command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'"
- store_test_results:
path: tests
run-tests-37:
docker:
- image: cimg/python:3.7
steps:
- checkout
- run:
name: "Install test deps"
command: "pip install .[test]"
- run:
name: "Run tests"
command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'"
- store_test_results:
path: tests
run-tests-38-cov:
docker:
- image: cimg/python:3.8
steps:
- checkout
- run:
name: "Install test deps"
command: "pip install .[test]"
- run:
name: "Install codecov"
command: "pip install codecov"
- run:
name: "Run tests"
command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'"
- store_test_results:
path: tests
- run:
name: "Notify codecov"
command: "codecov"
run-tests-39:
docker:
- image: cimg/python:3.9
steps:
- checkout
- run:
name: "Install test deps"
command: "pip install .[test]"
- run:
name: "Run tests"
command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'"
- store_test_results:
path: tests
run-tests-310:
docker:
- image: cimg/python:3.10
steps:
- checkout
- run:
name: "Install test deps"
command: "pip install .[test]"
- run:
name: "Run tests"
command: "python setup.py pytest --addopts '--junitxml=tests/result.xml'"
- store_test_results:
path: tests
workflows:
run-tests-workflow:
jobs:
#- run-tests-36 # 3.6 commented out - SHOULD still work, if you can build cryptography, or don't use it
- run-tests-37
- run-tests-38-cov
- run-tests-39
- run-tests-310
|