aboutsummaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorJosh Alexander <obviousrebel@users.noreply.github.com>2019-05-01 15:56:07 -0400
committerMatt Rendina <rendinam@users.noreply.github.com>2019-05-01 15:56:07 -0400
commitdc7160a449cd98b7e5ed368746313358cc3ff2a8 (patch)
tree77dc63cabe8ed491bc64da9d0be91b9631e12c4c /Jenkinsfile
parent78ca85cfe63998b47a1b15346fee93ec59057cbf (diff)
downloadjscu_refactor-dc7160a449cd98b7e5ed368746313358cc3ff2a8.tar.gz
XML Ingestion Fixes (#46)1.3.12
* fix junit xml ingestion * updated pytest paths * removed pytest pin * added invalid test report * removed library directive * removed validate function
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 69b246a..1a7ff4c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -33,12 +33,12 @@ bc0.env_vars = ['VAR_ONE=1',
'VAR_TWO=2']
bc0.conda_ver = '4.6.4'
bc0.conda_packages = ['python=3.6',
- 'pytest=3.8.2']
+ 'pytest']
bc0.build_cmds = ["date",
"./access_env_var.sh",
"which python",
"conda install ipython"]
-bc0.test_cmds = ["${PYTEST} test_75pass.py"]
+bc0.test_cmds = ["${PYTEST} tests/test_75pass.py"]
bc0.test_configs = [data_config]
@@ -46,7 +46,7 @@ bc1 = utils.copy(bc0)
bc1.name = 'Second'
bc1.env_vars = ['VAR_THREE=3',
'VAR_FOUR=4']
-bc1.test_cmds[1] = "${PYTEST} test_25pass.py"
+bc1.test_cmds[1] = "${PYTEST} tests/test_25pass.py"
bc2 = utils.copy(bc0)