diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 0716bb7..9b1ff4f 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -33,7 +33,7 @@ jobs: raco pkg install --auto ../assignments/ - name: Run tests run: | - raco test knock-plus/test/interp.rkt # all should pass + raco test --pkgs assignments raco test knock-plus/test/compile.rkt 2>&1 | grep 'failures' # should not pass - name: Create zips run: | diff --git a/info.rkt b/info.rkt index d714e15..06a0ab0 100644 --- a/info.rkt +++ b/info.rkt @@ -3,3 +3,5 @@ (define collection 'multi) (define deps (list "base" "rackunit" "https://github.com/cmsc430/a86.git?path=#main")) + +(define test-omit-paths (list "knock-plus/test/compile.rkt"))