File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -114,14 +114,18 @@ cp -r $PYTEST_TEMP_DIR/foundry/* $FOUNDRY_DIR
114
114
115
115
mkdir -p $SCRIPT_DIR /logs
116
116
117
- feature_shell " make test-integration TEST_ARGS='--foundry-root $FOUNDRY_DIR --maxfail=0 --numprocesses=$PYTEST_PARALLEL -vv $BUG_REPORT ' | tee $SCRIPT_DIR /logs/kontrol-$KONTROL_VERSION -$FEATURE_BRANCH_NAME .log"
117
+ # set test arguments and select which tests to run
118
+ QUOTE=' "'
119
+ TEST_ARGS=" --foundry-root $FOUNDRY_DIR --maxfail=0 --numprocesses=$PYTEST_PARALLEL -vv $BUG_REPORT -k 'not (test_kontrol_cse or test_foundry_minimize_proof or test_kontrol_end_to_end)'"
120
+
121
+ feature_shell " make test-integration TEST_ARGS=$QUOTE$TEST_ARGS$QUOTE | tee $SCRIPT_DIR /logs/kontrol-$KONTROL_VERSION -$FEATURE_BRANCH_NAME .log"
118
122
killall kore-rpc-booster || echo " no zombie processes found"
119
123
120
124
if [ -z " $BUG_REPORT " ]; then
121
125
if [ ! -e " $SCRIPT_DIR /logs/kontrol-$KONTROL_VERSION -master-$MASTER_COMMIT_SHORT .log" ]; then
122
126
# remove proofs so that they are not reused by the master shell call
123
- rm -r $FOUNDRY_DIR /out/proofs
124
- master_shell " make test-integration TEST_ARGS='--foundry-root $FOUNDRY_DIR --maxfail=0 --numprocesses= $PYTEST_PARALLEL -vv' | tee $SCRIPT_DIR /logs/kontrol-$KONTROL_VERSION -master-$MASTER_COMMIT_SHORT .log"
127
+ rm -rf $FOUNDRY_DIR /out/proofs
128
+ master_shell " make test-integration TEST_ARGS=$QUOTE$TEST_ARGS$QUOTE | tee $SCRIPT_DIR /logs/kontrol-$KONTROL_VERSION -master-$MASTER_COMMIT_SHORT .log"
125
129
killall kore-rpc-booster || echo " no zombie processes found"
126
130
fi
127
131
You can’t perform that action at this time.
0 commit comments