File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 19
19
# Our tags for PyPI distributions will be of the form `pypi-1.0.1`.
20
20
stages :
21
21
- name : test
22
- if : not tag is present
23
22
- name : deploy
24
23
if : tag is present
25
24
Original file line number Diff line number Diff line change @@ -9,21 +9,17 @@ pipeline {
9
9
stages {
10
10
11
11
// --------------------------------------------------------------------
12
- // Python Test
12
+ // Python Tests
13
13
// --------------------------------------------------------------------
14
14
15
- stage (' Test' ) {
15
+ stage (' Python2 Test' ) {
16
16
17
17
agent {
18
18
label ' python-slave'
19
19
}
20
20
21
21
steps {
22
22
23
- // Crete a Python2 environment and move into it.
24
- sh ' python3.6 -m venv python3'
25
- sh ' . python3/bin/activate'
26
-
27
23
sh ' pip install -r package-requirements.txt'
28
24
29
25
dir(' src/python' ) {
You can’t perform that action at this time.
0 commit comments