Skip to content

Commit

Permalink
make more e2e tests slow
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 14, 2023
1 parent 5a28f3a commit 20bf03e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 0 additions & 1 deletion e2e/test_nodejs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env bash
set -x
set -euo pipefail
# shellcheck source-path=SCRIPTDIR
source "$(dirname "$0")/assert.sh"
Expand Down
4 changes: 4 additions & 0 deletions e2e/test_poetry
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ set -euo pipefail
# shellcheck source-path=SCRIPTDIR
source "$(dirname "$0")/assert.sh"

if [ "${TEST_ALL:-}" != 1 ]; then
exit
fi

rm -rf "$RTX_DATA_DIR/cache/poetry"

export POETRY_HOME=".poetry"
Expand Down
4 changes: 4 additions & 0 deletions e2e/test_python
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ set -euo pipefail
# shellcheck source-path=SCRIPTDIR
source "$(dirname "$0")/assert.sh"

if [ "${TEST_ALL:-}" != 1 ]; then
exit
fi

export RTX_EXPERIMENTAL=1
export RTX_PYTHON_DEFAULT_PACKAGES_FILE="$ROOT/e2e/.default-python-packages"

Expand Down

0 comments on commit 20bf03e

Please sign in to comment.