-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* allow skipping cpu-crunching and executing algs immediately * allow executing fast in runner * use arguments to skip crunching in tests
- Loading branch information
Showing
6 changed files
with
73 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# FrameworkDemo tests | ||
|
||
## Usage | ||
|
||
Run the tests with: | ||
|
||
- Pkg REPL (arguments not supported): | ||
```julia | ||
] test | ||
``` | ||
- Pkg: | ||
```julia | ||
import Pkg | ||
Pkg.test("FrameworkDemo") | ||
# or with arguments | ||
Pkg.test("FrameworkDemo"; test_args=<list of args>) | ||
``` | ||
- Manually: | ||
``` | ||
julia --project test/runtests.jl <list of args> | ||
``` | ||
- REPL: | ||
```julia | ||
append!(ARGS, <list of args>) | ||
include("test/runtests.jl") | ||
``` | ||
|
||
## Arguments | ||
|
||
The tests support arguments: | ||
|
||
- `no-fast` - don't skip algorithm CPU crunching |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters