Skip to content

Commit 5415cc4

Browse files
authored
Merge pull request #1045 from jrdnbradford/remove-tests
Remove deprecated tests due to image changes
2 parents 5891f04 + 0b1da67 commit 5415cc4

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

.github/workflows/integration-test.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@ jobs:
5151
- name: "Ubuntu 22.04, Py 3.10, from latest"
5252
distro_image: "ubuntu:22.04"
5353
extra_flags: --upgrade-from=latest
54-
- name: "Ubuntu 22.04, Py 3.10, from 0.2.0"
55-
distro_image: "ubuntu:22.04"
56-
extra_flags: --upgrade-from=0.2.0
5754
- name: "Ubuntu 22.04, Py 3.10, from 1.*"
5855
distro_image: "ubuntu:22.04"
5956
extra_flags: --upgrade-from=1

.github/workflows/unit-test.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,16 @@ jobs:
5353
with:
5454
python-version: "${{ matrix.python_version }}"
5555

56-
- name: Install venv, git, pip and setup venv
56+
- name: Install system dependencies and setup venv
5757
run: |
5858
export DEBIAN_FRONTEND=noninteractive
5959
apt-get update
6060
apt-get install --yes \
6161
python3-venv \
6262
python3-pip \
6363
bzip2 \
64-
git
64+
git \
65+
curl
6566
6667
python3 -m venv /srv/venv
6768
echo '/srv/venv/bin' >> $GITHUB_PATH

tests/test_installer.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,6 @@ def _specifier(version):
161161
"mamba": ">=1.1.0",
162162
},
163163
),
164-
# too-old Python (3.7), abort
165-
(
166-
"miniconda",
167-
"4.7.10",
168-
ValueError,
169-
),
170164
],
171165
)
172166
def test_ensure_user_environment(

0 commit comments

Comments
 (0)