Add future tests to CI (#3169)

This commit is contained in:
Paulo Matos 2020-05-09 21:46:46 +02:00 committed by GitHub
parent 7a95ff3dd4
commit 2195db7233
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 0 deletions

View File

@ -32,6 +32,7 @@ jobs:
raco test -l tests/match/main
raco test -l tests/zo-path
raco test -c tests/xml
raco test -c tests/future
raco test -l tests/db/all-tests
raco test -c tests/stxparse
raco test -c tests/syntax
@ -71,5 +72,6 @@ jobs:
call racket\raco.exe test -l tests/match/main
call racket\raco.exe test -l tests/zo-path
call racket\raco.exe test -c tests/xml
call racket\raco.exe test -c tests/future
call racket\raco.exe test -l tests/db/all-tests
racket\raco.exe test -c tests/stxparse

View File

@ -308,6 +308,8 @@ jobs:
run: raco test -l tests/zo-path
- name: Run tests/xml
run: raco test -c tests/xml
- name: Run tests/future
run: raco test -c tests/future
- name: Run tests/stxparse
run: raco test -c tests/stxparse
- name: Install db tests dependency
@ -381,6 +383,8 @@ jobs:
run: raco test -l tests/zo-path
- name: Run tests/xml
run: raco test -c tests/xml
- name: Run tests/future
run: raco test -c tests/future
- name: Run tests/stxparse
run: raco test -c tests/stxparse
- name: Install db tests dependency
@ -446,6 +450,8 @@ jobs:
run: raco test -l tests/zo-path
- name: Run tests/xml
run: raco test -c tests/xml
- name: Run tests/future
run: raco test -c tests/future
- name: Run tests/stxparse
run: raco test -c tests/stxparse
- name: Install db tests dependency

View File

@ -74,6 +74,9 @@ jobs:
- name: Run tests/xml
continue-on-error: true
run: raco test -c tests/xml | tee logs/xml.log
- name: Run tests/future
continue-on-error: true
run: raco test -c tests/future
- name: Run tests/stxparse
continue-on-error: true
run: raco test -c tests/stxparse | tee logs/stxparse.log
@ -164,6 +167,9 @@ jobs:
- name: Run tests/xml
continue-on-error: true
run: raco test -c tests/xml | tee logs/xml.log
- name: Run tests/future
continue-on-error: true
run: raco test -c tests/future
- name: Run tests/stxparse
continue-on-error: true
run: raco test -c tests/stxparse | tee logs/stxparse.log