gah
This commit is contained in:
parent
9577907ec9
commit
57f522a1b7
1 changed files with 2 additions and 3 deletions
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
|
@ -16,8 +16,7 @@ pipeline {
|
|||
stage('Python') {
|
||||
steps {
|
||||
sh '/usr/local/bin/python3.7 -m venv env'
|
||||
sh '. env/bin/activate'
|
||||
sh 'pip install -r requirements.txt'
|
||||
sh 'env/bin/pip install -r requirements.txt'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -32,7 +31,7 @@ pipeline {
|
|||
}
|
||||
stage('MyPy') {
|
||||
steps {
|
||||
sh 'mypy server.py'
|
||||
sh 'env/bin/mypy server.py'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue