mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
9fe0363937
- 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.
13 lines
304 B
TOML
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"
|