Skip to content

Commit 9745226

Browse files
committed
Do not pass -ntp to Maven, it does not work on Windows
1 parent b131fde commit 9745226

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_standalone.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
import glob
4646

4747
is_enabled = 'ENABLE_STANDALONE_UNITTESTS' in os.environ and os.environ['ENABLE_STANDALONE_UNITTESTS'] == "true"
48-
MVN_CMD = [shutil.which('mvn'), '-ntp', '-e'] # No download progress bar, always show traces
48+
MVN_CMD = [shutil.which('mvn')]
4949
if 'MAVEN_REPO_OVERRIDE' in os.environ:
5050
MVN_CMD += ['-Dmaven.repo.remote=' + os.environ['MAVEN_REPO_OVERRIDE']]
5151

0 commit comments

Comments
 (0)