Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
hpc
gekkofs
Commits
5382cc00
Commit
5382cc00
authored
Jun 15, 2022
by
Ramon Nou
Browse files
Updated Testing parallelism
parent
fba56981
Pipeline
#2751
passed with stages
in 11 minutes and 44 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
5382cc00
...
...
@@ -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
...
...
tests/integration/directories/test_pathresolution.py
View file @
5382cc00
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment