diff --git a/Jenkinsfile b/Jenkinsfile index e559f42..02edb2c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,15 +14,14 @@ pipeline { stage('Code Tests') { steps { container('python') { - dir('api') { - sh ''' - cd api - python3 -m venv env - source env/bin/activate - pip install -r requirements.txt pytest - python3 -m pytest --junit-xml=pytest_junit.xml - ''' - } + sh ''' + cd api + python3 -m venv env + source env/bin/activate + pip install -r requirements.txt pytest + python3 -m pytest --junit-xml=pytest_junit.xml + ''' + } } post {