Added ability to configure how uniques that do not match a filter are handled, and additionally added unique importing to importers #628
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: CI | |
on: [pull_request] | |
concurrency: | |
group: "${{github.workflow}}-${{github.ref}}" | |
cancel-in-progress: true | |
jobs: | |
tests: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup env | |
uses: ./.github/actions/setup_env | |
- name: ruff format | |
shell: powershell | |
run: ruff format --check | |
- name: ruff lint | |
shell: powershell | |
run: ruff check | |
- name: Pytest | |
shell: powershell | |
run: pytest . -m "not selenium" -v -n logical | |
# - name: Pytest selenium | |
# shell: powershell | |
# run: pytest . -m "selenium" -v |