Skip to content

Commit 0e678fa

Browse files
committed
Remove outlaw from default tests for langs (but make sure to test in CI).
1 parent 73b18dc commit 0e678fa

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/langs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,5 @@ jobs:
3434
run: raco pkg install langs/
3535
- name: Run tests
3636
run: |
37-
raco test -p langs
37+
raco test -j 8 -p langs
38+
raco test -j 8 -c outlaw

langs/info.rkt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,12 @@
22
(define version "1.0")
33
(define collection 'multi)
44
(define deps (list))
5+
6+
;; Outlaw is omitted here because it depends on libraries that are a pain
7+
;; to ensure are set up properly and we don't want students to see failing
8+
;; tests at the beginning of the semester, nor do we want to get into
9+
;; setting up libraries only needed in the last week and only if you
10+
;; actually care to run Outlaw.
11+
12+
;; To test outlaw you should do an explicit: raco test -c outlaw
13+
(define test-omit-paths (list "outlaw"))

0 commit comments

Comments
 (0)