Skip to content

Commit 977a115

Browse files
committed
one more parallel test issue
Change-Id: Ic7999946ab4b2b66ad18f69db831eb9a21d84bd8
1 parent 1d295bd commit 977a115

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_mkvirtualenv_requirements.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ oneTimeSetUp() {
1111

1212
oneTimeTearDown() {
1313
rm -rf "$WORKON_HOME"
14-
rm -f "$test_dir/requirements.txt"
14+
rm -f "$TMPDIR/requirements.txt"
1515
}
1616

1717
setUp () {
1818
echo
1919
}
2020

2121
test_requirements_file () {
22-
echo "IPy" > "$test_dir/requirements.txt"
23-
mkvirtualenv -r "$test_dir/requirements.txt" "env3" >/dev/null 2>&1
22+
echo "IPy" > "$TMPDIR/requirements.txt"
23+
mkvirtualenv -r "$TMPDIR/requirements.txt" "env3" >/dev/null 2>&1
2424
installed=$(pip freeze)
2525
assertTrue "IPy not found in $installed" "pip freeze | grep IPy"
2626
}

0 commit comments

Comments
 (0)