Skip to content

Translations update from Fedora Weblate #1042

Translations update from Fedora Weblate

Translations update from Fedora Weblate #1042

Workflow file for this run

on:
push:
branches:
- stable
- dev
pull_request:
branches:
- stable
- dev
name: Tests
jobs:
misc_tests:
name: Misc tests
container:
image: fedorapython/fedora-python-tox
options: --user 1001:1001
steps:
- uses: actions/checkout@v3
- name: Run tests
run: tox -e ${{ matrix.tox_env }}
strategy:
matrix:
tox_env:
- lint
- format
- licenses
- security
- docs
runs-on: ubuntu-latest
unit_test:
name: Unit tests
steps:
- uses: actions/checkout@v3
- name: Run tests
uses: fedora-python/tox-github-action@master
with:
tox_env: ${{ matrix.tox_env }}
strategy:
matrix:
tox_env:
- py39-unittest
- py310-unittest
runs-on: ubuntu-latest
integration_test:
name: Integration tests
steps:
- uses: actions/checkout@v3
- name: Install RabbitMQ
uses: mer-team/rabbitmq-mng-action@v1.2
with:
RABBITMQ_TAG: "3-management-alpine"
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Tox
run: pip install tox
- name: Run integration tests
# Run tox using the version of Python in `PATH`
run: tox -e py-integration
strategy:
matrix:
python:
- "3.9"
- "3.10"
runs-on: ubuntu-latest