Fix Travis tests by using collection paths instead for file paths.

This commit is contained in:
Sam Tobin-Hochstadt 2014-12-04 15:48:30 -05:00
parent d05c00de3e
commit 960d8f5cf4
2 changed files with 21 additions and 15 deletions

View File

@ -10,21 +10,21 @@ compiler:
# Just run tests for the core
script:
- make CPUS="2" PKGS="racket-test db-test unstable-flonum-lib net-test"
- racket -f pkgs/racket-pkgs/racket-test/tests/racket/quiet.rktl
- racket pkgs/racket-pkgs/racket-test/tests/racket/contract/all.rkt
- raco test pkgs/racket-pkgs/racket-test/tests/json/json.rkt
- raco test pkgs/racket-pkgs/racket-test/tests/file/main.rkt
- raco test pkgs/net-pkgs/net-test/tests/net/head.rkt
- raco test pkgs/net-pkgs/net-test/tests/net/uri-codec.rkt
- raco test pkgs/net-pkgs/net-test/tests/net/url.rkt
- raco test pkgs/net-pkgs/net-test/tests/net/url-port.rkt
- raco test pkgs/net-pkgs/net-test/tests/net/encoders.rkt
- raco test pkgs/racket-pkgs/racket-test/tests/openssl/basic.rkt
- raco test pkgs/racket-pkgs/racket-test/tests/openssl/https.rkt
- raco test pkgs/racket-pkgs/racket-test/tests/match/plt-match-tests.rkt
- raco test pkgs/racket-pkgs/racket-test/tests/zo-path.rkt
- raco test pkgs/racket-pkgs/racket-test/tests/xml/test.rkt
- raco test pkgs/db-pkgs/db-test/tests/db/all-tests.rkt
- raco test -l tests/racket/run-quiet
- racket -l tests/racket/contract/all
- raco test -l tests/json/json
- raco test -l tests/file/main
- raco test -l tests/net/head
- raco test -l tests/net/uri-codec
- raco test -l tests/net/url
- raco test -l tests/net/url-port
- raco test -l tests/net/encoders
- raco test -l tests/openssl/basic
- raco test -l tests/openssl/https
- raco test -l tests/match/plt-match-tests
- raco test -l tests/zo-path
- raco test -l tests/xml/test
- raco test -l tests/db/all-tests
notifications:
irc: "chat.freenode.net#racket-dev"
email:

View File

@ -0,0 +1,6 @@
#lang racket/base
(require racket/runtime-path)
(define-runtime-path quiet "quiet.rktl")
(current-namespace (make-base-namespace))
(eval '(require racket (for-syntax racket)))
(load "quiet.rktl")