reserve bottom space for error message #3875
Workflow file for this run
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 Tests | |
on: [push] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
python: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
fail-fast: false | |
runs-on: ubuntu-latest | |
timeout-minutes: 40 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: set up Poetry | |
uses: abatilo/actions-poetry@v2.0.0 | |
with: | |
poetry-version: "1.6.1" | |
- name: install dependencies | |
run: | | |
set -x | |
poetry config virtualenvs.create false | |
poetry install --all-extras | |
# install packages to run the examples | |
pip install opencv-python opencv-contrib-python-headless httpx isort replicate langchain openai simpy tortoise-orm | |
pip install -r tests/requirements.txt | |
# try fix issue with importlib_resources | |
pip install importlib-resources | |
- name: test startup | |
run: ./test_startup.sh | |
- name: setup chromedriver | |
uses: nanasess/setup-chromedriver@v2.2.0 | |
- name: pytest | |
run: pytest | |
- name: upload screenshots | |
uses: actions/upload-artifact@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
name: pytest-screenshots | |
path: tests/screenshots | |
slack: | |
needs: | |
- test | |
if: always() # also execute when test fail | |
runs-on: ubuntu-latest | |
steps: | |
- name: Determine if we need to notify | |
uses: Jimdo/should-i-notify-action@main | |
id: should_notify | |
with: | |
needs_context: ${{ toJson(needs) }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check if secret exists | |
id: check_secret | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_ROBOTICS_CI_WEBHOOK }} | |
run: | | |
if [[ -z "$SLACK_WEBHOOK" ]]; then | |
echo "slack_webhook_exists=false" >> $GITHUB_ENV | |
else | |
echo "slack_webhook_exists=true" >> $GITHUB_ENV | |
fi | |
- name: Slack workflow notification | |
if: steps.should_notify.outputs.should_send_message == 'yes' && env.slack_webhook_exists == 'true' | |
uses: Gamesight/slack-workflow-status@master | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
slack_webhook_url: ${{ secrets.SLACK_ROBOTICS_CI_WEBHOOK }} | |
channel: "robotik-ci" | |
name: "NiceGUI" |