Skip to content

Commit

Permalink
Fix tests (#989)
Browse files Browse the repository at this point in the history
* Fix tests

* .
  • Loading branch information
ofek authored Oct 8, 2023
1 parent 166ddd1 commit 8aa2cec
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', 'pypy-3.9']
python-version: ['3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v3
Expand Down
18 changes: 9 additions & 9 deletions tests/cli/env/test_show.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,15 +439,15 @@ def test_context_formatting(hatch, helpers, temp_dir, config_file):
+======+=========+==============+=======================+
| foo | virtual | pydantic | BAR=FOO_BAR |
+------+---------+--------------+-----------------------+
Matrices
+---------+---------+------------+-------------------------+
| Name | Type | Envs | Dependencies |
+=========+=========+============+=========================+
| default | virtual | py39-9000 | foo @ {root:uri}/../foo |
| | | py39-3.14 | |
| | | py310-9000 | |
| | | py310-3.14 | |
+---------+---------+------------+-------------------------+
Matrices
+---------+---------+------------+------------------------+
| Name | Type | Envs | Dependencies |
+=========+=========+============+========================+
| default | virtual | py39-9000 | foo@ {root:uri}/../foo |
| | | py39-3.14 | |
| | | py310-9000 | |
| | | py310-3.14 | |
+---------+---------+------------+------------------------+
"""
)

Expand Down
2 changes: 1 addition & 1 deletion tests/index/server/devpi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:alpine
FROM python:3.11-alpine

RUN apk add --update build-base && \
pip install -U devpi-server devpi-client devpi-web
Expand Down

0 comments on commit 8aa2cec

Please sign in to comment.