mirror of
https://github.com/danog/parser.git
synced 2024-11-26 20:04:57 +01:00
chore: run integration tests for third party libraries one by one.
Signed-off-by: azjezz <azjezz@protonmail.com>
This commit is contained in:
parent
972fbfa046
commit
fc3230073e
13
.github/workflows/third-party-tests.yml
vendored
13
.github/workflows/third-party-tests.yml
vendored
@ -35,6 +35,15 @@ jobs:
|
||||
run: |
|
||||
cargo install just
|
||||
|
||||
- name: test third-party
|
||||
run: just test-third-party
|
||||
- name: test azjezz/psl
|
||||
run: just test-psl
|
||||
|
||||
- name: test nikic/php-parser
|
||||
run: just test-php-parser
|
||||
|
||||
- name: test symfony/symfony
|
||||
run: just test-symfony
|
||||
|
||||
- name: test laravel/framework
|
||||
run: just test-laravel
|
||||
|
||||
|
18
Justfile
18
Justfile
@ -27,6 +27,18 @@ dump file:
|
||||
test filter='':
|
||||
cargo test --all {{filter}} -- --skip third_party
|
||||
|
||||
# run integration tests for third-party libraries.
|
||||
test-third-party:
|
||||
cargo test third_party -- --nocapture
|
||||
# run integration tests for `azjezz/psl` library.
|
||||
test-psl:
|
||||
cargo test php_standard_library -- --nocapture
|
||||
|
||||
# run integration tests for `nikic/php-parser` library.
|
||||
test-php-parser:
|
||||
cargo test nikic_php_parser -- --nocapture
|
||||
|
||||
# run integration tests for `symfony/symfony` framework.
|
||||
test-symfony:
|
||||
cargo test symfony_framework -- --nocapture
|
||||
|
||||
# run integration tests for `laravel/framework` framework.
|
||||
test-laravel:
|
||||
cargo test laravel_framework -- --nocapture
|
||||
|
Loading…
Reference in New Issue
Block a user