diff --git a/.github/workflows/test_workflow.yml b/.github/workflows/test_workflow.yml index 54f9b50..b33f04b 100644 --- a/.github/workflows/test_workflow.yml +++ b/.github/workflows/test_workflow.yml @@ -33,6 +33,10 @@ jobs: OS: ubuntu-latest PY: '3.11' + - NAME: Ubuntu Python 3.12 + OS: ubuntu-latest + PY: '3.12' + # test on MacOS - NAME: MacOS Baseline OS: macos-latest @@ -77,7 +81,9 @@ jobs: run: | cd $HOME - testflo testflo.tests || RC=$? + testflo testflo.tests --show_skipped --durations=3 --deprecations_report dep.txt || RC=$? + + grep "Deprecations Report" dep.txt if [[ $RC -ne 1 ]]; then echo "Expected some tests to fail."