We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d65526b + d22b60d commit fce4d96Copy full SHA for fce4d96
Jenkinsfile
@@ -0,0 +1,22 @@
1
+pipeline {
2
+ agent {
3
+ docker {
4
+ image 'python:3.7.3'
5
+ args '--network=host'
6
+ }
7
8
+
9
+ stages {
10
+ stage('install') {
11
+ steps {
12
+ sh 'pip install -r requirements.txt'
13
14
15
16
+ stage('test') {
17
18
+ sh 'nosetests'
19
20
21
22
+}
requirements.txt
@@ -4,6 +4,7 @@ certifi==2019.3.9
chardet==3.0.4
idna==2.8
lxml==4.3.3
+nose==1.3.7
soupsieve==1.9.1
tornado==6.0.2
urllib3==1.25.3
0 commit comments