We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73b18dc commit 0e678faCopy full SHA for 0e678fa
2 files changed
.github/workflows/langs.yml
@@ -34,4 +34,5 @@ jobs:
34
run: raco pkg install langs/
35
- name: Run tests
36
run: |
37
- raco test -p langs
+ raco test -j 8 -p langs
38
+ raco test -j 8 -c outlaw
langs/info.rkt
@@ -2,3 +2,12 @@
2
(define version "1.0")
3
(define collection 'multi)
4
(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