Skip to content

Fix the issue where HTML elements cannot be dropped from the text selector returned by Selector.jmespath() #330

Fix the issue where HTML elements cannot be dropped from the text selector returned by Selector.jmespath()

Fix the issue where HTML elements cannot be dropped from the text selector returned by Selector.jmespath() #330

Workflow file for this run

name: Checks
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.12"
env:
TOXENV: pre-commit
- python-version: "3.12"
env:
TOXENV: pylint
- python-version: "3.12"
env:
TOXENV: docs
- python-version: "3.12"
env:
TOXENV: typing
- python-version: "3.12"
env:
TOXENV: twinecheck
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run check
env: ${{ matrix.env }}
run: |
pip install -U tox
tox