Loading .gitlab-ci.yml +1 −1 Original line number Diff line number Diff line Loading @@ -138,7 +138,7 @@ gkfs:integration: - export PATH=${PATH}:/usr/local/bin - mkdir -p ${BUILD_PATH}/tests/run - cd ${BUILD_PATH}/tests/integration - ${PYTEST} -v -n 1 - ${PYTEST} -v -n $(nproc) ${INTEGRATION_TESTS_BIN_PATH}/${SUBTEST} --basetemp=${BUILD_PATH}/tests/run/${SUBTEST} --junit-xml=report.xml Loading tests/integration/directories/test_pathresolution.py +4 −4 Original line number Diff line number Diff line Loading @@ -42,11 +42,11 @@ nonexisting = "nonexisting" #@pytest.mark.xfail(reason="invalid errno returned on success") def test_pathresolution(gkfs_daemon, gkfs_client): """Testing different path resolution capabilities""" pid = os.getpid().__str__() mountdir = gkfs_daemon.mountdir extdir = "/tmp/ext.tmp" ext_linkdir = "/tmp/link.tmp" nodir = "/tmp/notexistent" extdir = "/tmp/" + pid + "ext.tmp" ext_linkdir = "/tmp/" + pid + "link.tmp" nodir = "/tmp/" + pid + "notexistent" intdir = mountdir / "int" # Just clean if it exists, due to a failed test Loading Loading
.gitlab-ci.yml +1 −1 Original line number Diff line number Diff line Loading @@ -138,7 +138,7 @@ gkfs:integration: - export PATH=${PATH}:/usr/local/bin - mkdir -p ${BUILD_PATH}/tests/run - cd ${BUILD_PATH}/tests/integration - ${PYTEST} -v -n 1 - ${PYTEST} -v -n $(nproc) ${INTEGRATION_TESTS_BIN_PATH}/${SUBTEST} --basetemp=${BUILD_PATH}/tests/run/${SUBTEST} --junit-xml=report.xml Loading
tests/integration/directories/test_pathresolution.py +4 −4 Original line number Diff line number Diff line Loading @@ -42,11 +42,11 @@ nonexisting = "nonexisting" #@pytest.mark.xfail(reason="invalid errno returned on success") def test_pathresolution(gkfs_daemon, gkfs_client): """Testing different path resolution capabilities""" pid = os.getpid().__str__() mountdir = gkfs_daemon.mountdir extdir = "/tmp/ext.tmp" ext_linkdir = "/tmp/link.tmp" nodir = "/tmp/notexistent" extdir = "/tmp/" + pid + "ext.tmp" ext_linkdir = "/tmp/" + pid + "link.tmp" nodir = "/tmp/" + pid + "notexistent" intdir = mountdir / "int" # Just clean if it exists, due to a failed test Loading