Skip to content

feat: support TMS 5.2. #184

feat: support TMS 5.2.

feat: support TMS 5.2. #184

Workflow file for this run

name: Code checks
on:
- pull_request
jobs:
linters:
name: Auto check
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.11']
package: [
testit-adapter-behave,
testit-adapter-nose,
testit-adapter-pytest,
testit-adapter-robotframework,
testit-python-commons
]
steps:
- uses: actions/checkout@v3
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements for ${{ matrix.package }}
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# - name: Run flake8 [${{ matrix.package }}]
# working-directory: ${{ matrix.package }}
# run: flake8 --ignore=C901 .
# - name: Tests [${{ matrix.package }}]
# working-directory: ${{ matrix.package }}
# run: pytest --basetemp=tmp