notcurses/rust/.cargo/config.toml
joseLuís 9fe0363937 rust: improve testing
- add new alias `t_all` for running every test even if some fail.
- call it from `.drone.yml` to have more complete testing picture.
- add a new test for `notcurses_init` as the first test.
2020-11-18 01:48:54 +01:00

13 lines
304 B
TOML

[alias]
d = "doc --no-deps"
do = "doc --no-deps --open"
re = "run --example"
rqe = "run --quiet --example "
req = "rqe"
# TEST
# fix IO errors: https://github.com/dankamongmen/notcurses/issues/766
t = "test -- --test-threads 1 --nocapture"
t_all = "test --no-fail-fast -- --test-threads 1 --nocapture"