Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mraszyk committed Oct 13, 2024
1 parent 0ba6ca2 commit ffd2644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
for p in $(cargo metadata --no-deps --format-version 1 | jq -r .packages[].manifest_path); do
# skip unit tests for integration tests on windows
# because integration tests cannot be run on windows anyway
if [[ ! ( ${{ matrix.os == 'windows-latest' }} && "$(grep ref-tests "${p}")" ) ]]; then
if [[ ! ( ${{ matrix.os == 'windows-latest' }} && "$(echo ${p} | grep ref-tests)" ) ]]; then
pushd $(dirname $p)
cargo test --all-targets --all-features
cargo test --all-targets --no-default-features
Expand Down

0 comments on commit ffd2644

Please sign in to comment.