
`typed-racket-test/main` is now the file to run for almost everything. `typed-racket-test/run` continues to exist so that DrDr preserves the timing history. Integration tests now print a progress meter, which should fix the Travis timeouts.
10 lines
266 B
Racket
10 lines
266 B
Racket
#lang racket
|
|
|
|
;; Test mode:
|
|
(module test racket/base
|
|
(require syntax/location)
|
|
(parameterize ([current-command-line-arguments (vector "--nightly")])
|
|
(dynamic-require '(submod typed-racket-test/main main) 0))
|
|
(module config info
|
|
(define timeout 1800)))
|