Skip to content

Commit

Permalink
fix venv requirements install step
Browse files Browse the repository at this point in the history
  • Loading branch information
Shuchita Khare committed Feb 22, 2024
1 parent cbad078 commit 511331a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ pipeline {
sh 'git submodule update --init --recursive'
}
createVenv("fwk_io/test/requirements.txt")
dir("fwk_io") {
dir("fwk_io/test") {
// build everything
withVenv {
withTools(params.TOOLS_VERSION) {
sh "pip install -Ur test/requirements.txt"
sh "pip install -Ur requirements.txt"
}
}
}
Expand Down

0 comments on commit 511331a

Please sign in to comment.