File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,6 @@ if [[ $TEST_UNSKIP = true ]]; then
14
14
fi
15
15
# absolute path for the selected skip list
16
16
TRITON_TEST_SKIPLIST_DIR=" $( cd " $TRITON_TEST_SKIPLIST_DIR " && pwd) "
17
- # absolute path for the current skip list
18
- CURRENT_SKIPLIST_DIR=" $SCRIPTS_DIR /skiplist/current"
19
17
20
18
pytest () {
21
19
pytest_extra_args=()
@@ -41,11 +39,9 @@ pytest() {
41
39
fi
42
40
43
41
if [[ ! -f $TRITON_TEST_SELECTFILE && -v TRITON_TEST_SUITE && -f $TRITON_TEST_SKIPLIST_DIR /$TRITON_TEST_SUITE .txt ]]; then
44
- mkdir -p " $CURRENT_SKIPLIST_DIR "
45
- cp " $TRITON_TEST_SKIPLIST_DIR /$TRITON_TEST_SUITE .txt" " $CURRENT_SKIPLIST_DIR /$TRITON_TEST_SUITE .txt"
46
42
if [[ $TEST_UNSKIP = false ]]; then
47
43
pytest_extra_args+=(
48
- " --skip-from-file=$CURRENT_SKIPLIST_DIR /$TRITON_TEST_SUITE .txt"
44
+ " --skip-from-file=$TRITON_TEST_SKIPLIST_DIR /$TRITON_TEST_SUITE .txt"
49
45
)
50
46
else
51
47
pytest_extra_args+=(
You can’t perform that action at this time.
0 commit comments