Run test suite for Qt on bleeding-edge dependencies weekly #56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run test suite for Qt on bleeding-edge dependencies weekly | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 4' | |
env: | |
PYTHONUNBUFFERED: 1 | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ['3.11'] | |
qt-api: ['pyside6'] | |
fail-fast: false | |
env: | |
ETS_TOOLKIT: qt | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 20 # should be plenty, it's usually < 5 | |
steps: | |
- name: Check out the target commit | |
uses: actions/checkout@v3 | |
- name: Install Qt dependencies | |
uses: ./.github/actions/install-qt-support | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies and local packages | |
run: | | |
python -m pip install ".[${{ matrix.qt-api }},editors,examples,test]" | |
- name: Install source dependencies | |
run: | | |
python -m pip install --force-reinstall git+http://github.com/enthought/pyface.git#egg=pyface | |
python -m pip install --force-reinstall git+http://github.com/enthought/traits.git#egg=traits | |
- name: Create clean test directory | |
run: | | |
mkdir testdir | |
- name: Run the test suite (Linux) | |
run: cd testdir && xvfb-run -a python -X faulthandler -m unittest discover -v traitsui | |
if: matrix.os == 'ubuntu-latest' | |
- name: Run the test suite (Windows/macOS) | |
run: cd testdir && python -X faulthandler -m unittest discover -v traitsui | |
if: matrix.os != 'ubuntu-latest' | |
notify-on-failure: | |
needs: test | |
if: failure() | |
runs-on: ubuntu-latest | |
steps: | |
- name: Notify Slack channel on failure | |
uses: voxmedia/github-action-slack-notify-build@v1 | |
with: | |
channel_id: ${{ secrets.ETS_SLACK_CHANNEL_ID }} | |
status: FAILED | |
color: danger | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_ACTION_SECRET }} | |
notify-on-success: | |
needs: test | |
if: success() | |
runs-on: ubuntu-latest | |
steps: | |
- name: Notify Slack channel on success | |
uses: voxmedia/github-action-slack-notify-build@v1 | |
with: | |
channel_id: ${{ secrets.ETS_BOTS_SLACK_CHANNEL_ID }} | |
status: SUCCESS | |
color: good | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_ACTION_SECRET }} |