diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-04-07 13:10:06 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-04-07 13:10:06 -0400 |
commit | 4e6fda2a6e086b88bf6f8a363356f6ef019bec74 (patch) | |
tree | bfe1abc422258edd572a3ed47c8bf3b211785f81 | |
parent | 1bc8f8c1f0e09981beff178a87c7993fcf9df1ac (diff) | |
download | simple_pytest_test-4e6fda2a6e086b88bf6f8a363356f6ef019bec74.tar.gz |
no conda
-rw-r--r-- | libtest.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtest.groovy b/libtest.groovy index 2774278..e804380 100644 --- a/libtest.groovy +++ b/libtest.groovy @@ -13,7 +13,7 @@ bc0 = new BuildConfig() bc0.nodetype = "python37" bc0.name = "libtest" bc0.build_cmds = ["true"] -bc0.test_cmds = ["conda install -q -y pytest requests astropy", +bc0.test_cmds = ["pip install pytest", "pytest tests --basetemp=tests_output --junitxml results.xml --remote-data tests/"] bc0.failedUnstableThresh = 1 bc0.failedFailureThresh = 6 |