
Running with-tr-contracts as-is takes an unreasonable amount of time because the tests are run w/o recompiling typed racket. We need to find a way to make this more reasonable (i.e. make sure we recompile before running the unit tests) before enabling them for DrDr again.
12 lines
256 B
Racket
12 lines
256 B
Racket
#lang racket
|
|
|
|
#;(void (putenv "PLT_TR_CONTRACTS" "1"))
|
|
|
|
(define ns (make-base-namespace))
|
|
(current-namespace ns)
|
|
(use-compiled-file-paths null)
|
|
|
|
#;
|
|
((dynamic-require 'typed-racket-test/main 'go/text)
|
|
(dynamic-require 'typed-racket-test/main 'unit-tests))
|