tests: fix album/radio tests
This commit is contained in:
parent
933630f590
commit
559e0444fb
2 changed files with 33 additions and 8 deletions
14
Justfile
14
Justfile
|
|
@ -1,6 +1,20 @@
|
|||
test:
|
||||
cargo test --all-features
|
||||
|
||||
unittest:
|
||||
cargo test --all-features --lib
|
||||
|
||||
testyt:
|
||||
cargo test --all-features --test youtube
|
||||
|
||||
testyt10:
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
for i in {1..10}; do \
|
||||
echo "---TEST RUN $i---"; \
|
||||
cargo test --all-features --test youtube; \
|
||||
done
|
||||
|
||||
testfiles:
|
||||
cargo run -p rustypipe-codegen -- -d . download-testfiles
|
||||
|
||||
|
|
|
|||
Reference in a new issue