Fix deprecated versioneer code for py3.12 #25
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: SeleniumTestability tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python: [3.8.13] | |
browser: [chrome, firefox] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "${{ matrix.python }}" | |
cache: 'pip' | |
cache-dependency-path: 'requirements-dev.txt' | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Build javascript aassets | |
run: | | |
npm install | |
npm run build | |
- name: Running Acceptance Tests | |
run: | | |
inv test --skipci --xunit acceptance_tests.xml |