Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates agent_all_tlds workflow(s), pip to uv. #28

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,14 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies.
- name: Install UV
run: |
python -m pip install --upgrade pip
python -m pip install -r requirement.txt
python -m pip install -r tests/test-requirement.txt
python -m pip install uv
- name: Install dependencies.
run: |
python -m uv pip install -r requirement.txt
python -m uv pip install -r tests/test-requirement.txt
- name: Runnning tests with pytest.
run: |
pytest -m "not docker" --cov=./ --cov-report=xml:coverage.xml --cov-report=term-missing
Expand All @@ -44,4 +47,4 @@ jobs:
with:
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.xml
file: coverage.xml
Loading