Turn on extended tests (#4588)

# Turn on strict extended tests

This PR turns on strict testing for extended tests.
This commit is contained in:
Eugene Yurtsev
2023-05-12 14:50:08 -04:00
committed by GitHub
parent d96f6a106b
commit 08ed927c32
5 changed files with 20 additions and 24 deletions

View File

@@ -40,5 +40,9 @@ jobs:
fi
- name: Run ${{matrix.test_type}} tests
run: |
make test
if [ "${{ matrix.test_type }}" == "core" ]; then
make test
else
make extended_tests
fi
shell: bash