File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 9
9
@echo " push: run the basic test suite and git push"
10
10
11
11
# Common tests - also run by CI
12
+ test : export RAKUDO_RAKUAST=1
12
13
test :
13
14
if [ " ${TEST_JOBS} " != " " ]; then prove --ext=rakutest -j ${TEST_JOBS} -e raku t; else prove --ext=rakutest -e raku t; fi
14
15
15
16
# Extended tests - should be run by authors before committing
16
17
xtest :
17
- if [ " ${TEST_JOBS} " != " " ]; then prove --ext=rakutest -j ${TEST_JOBS} -e raku t xt; else prove --ext=rakutest -e raku t xt; fi
18
+ RAKUDO_RAKUAST=1 [ " ${TEST_JOBS} " != " " ]; then prove --ext=rakutest -j ${TEST_JOBS} -e raku t xt; else prove --ext=rakutest -e raku t xt; fi
18
19
19
20
push : test
20
21
git pull --rebase && git push
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ if @files {
23
23
my % data ;
24
24
my $ lock = Lock ::Async. new ;
25
25
26
+ # -c doesn't work 100% under RakuAST yet
27
+ % * ENV <RAKUDO_RAKUAST >= ' ' ;
28
+
26
29
my $ verbose = % * ENV <RAKU_DOC_TEST_VERBOSE > // False ;
27
30
28
31
@ files . race . map : -> $ file {
You can’t perform that action at this time.
0 commit comments