Skip to content

add 7 multi-tenant tagged-keyname specs at 10M scale #830

add 7 multi-tenant tagged-keyname specs at 10M scale

add 7 multi-tenant tagged-keyname specs at 10M scale #830

Workflow file for this run

name: Run Tests using tox
on:
pull_request:
push:
branches:
- master
- main
jobs:
pytest:
strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
os: [ "ubuntu-latest", "ubuntu-24.04" ]
fail-fast: false
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
USING_COVERAGE: "3.10"
USING_COVERAGE_OS: "ubuntu-latest"
TOX_DOCKER_GATEWAY: localhost
runs-on: "ubuntu-latest"
name: os ${{ matrix.os }} python ${{ matrix.python-version }} Linting, testing, and compliance
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install Dev requirements
run: |
pip install -U setuptools wheel
pip install -r dev_requirements.txt
- name: Run tox
run: |
tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
if: contains(env.USING_COVERAGE, matrix.python-version) && contains(env.USING_COVERAGE_OS, matrix.os)
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false
verbose: true