Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
beat
beat.core
Commits
302a9803
Commit
302a9803
authored
Dec 10, 2018
by
André Anjos
💬
Committed by
Samuel GAIST
Dec 10, 2018
Browse files
[scripts][before_tests] Fix python 2 print syntax
parent
c3349432
Changes
1
Hide whitespace changes
Inline
Side-by-side
scripts/before_test.sh
View file @
302a9803
...
...
@@ -91,7 +91,7 @@ check_array_env ALGORITHMS
if
[
"
${
BUILDOUT
}
"
==
"true"
]
;
then
BEAT_CORE_TEST_DIR
=
"
${
basedir
}
/beat/core/test"
else
BEAT_CORE_TEST_DIR
=
$(
python
-c
'import beat.core.test as f; import os; print
os.path.abspath(os.path.dirname(f.__file__))'
)
BEAT_CORE_TEST_DIR
=
$(
python
-c
'import beat.core.test as f; import os; print
(
os.path.abspath(os.path.dirname(f.__file__))
)
'
)
fi
check_env BEAT_CORE_TEST_DIR
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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