updates from internal repository #149
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: Tests | |
on: [push, pull_request] | |
jobs: | |
tests: | |
name: Build and test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
cache-dependency-path: "dependencies/requirements*.txt" | |
- name: Install dependencies | |
run: pip install -r dependencies/requirements.txt | |
- name: Install htc | |
run: pip install --no-build-isolation -e . | |
# Tests run only in the internal repository. For the public repository, we only check that everything is importable | |
- name: Tests | |
env: | |
HTC_ADD_NETWORK_ALTERNATIVES: false | |
run: | | |
pip install -r dependencies/requirements-tests.txt | |
py.test --doctest-modules --import-mode=importlib --collect-only --ignore=tests . |