Skip to content

Commit

Permalink
remove 1.8.0b1 from tests since we know this does not work with the n…
Browse files Browse the repository at this point in the history
…ew method (or the old)
  • Loading branch information
mikealfare committed Apr 15, 2024
1 parent ea7bcd2 commit d23fa94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/integration/bundle/test_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@pytest.mark.parametrize(
argnames="test_version",
argvalues=["0.0.0", "1.3.0", "1.4.0", "1.5.0", "1.6.0", "1.7.0b1", "1.7.0", "1.8.0b1"],
argvalues=["0.0.0", "1.3.0", "1.4.0", "1.5.0", "1.6.0", "1.7.0b1", "1.7.0"],
)
def test_generate_bundle_creates_a_bundle_with_valid_version(
test_version
Expand Down
2 changes: 1 addition & 1 deletion test/integration/bundle/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from release_creation.bundle.create import _download_packages


@pytest.mark.parametrize("test_version", ["1.8.0b1"])
@pytest.mark.parametrize("test_version", ["0.0.0"])
def test_correct_version_of_psycopg2(test_version):
if sys.version_info == (3, 10) and Version.coerce(test_version) >= Version.coerce(
"1.5.0"
Expand Down

0 comments on commit d23fa94

Please sign in to comment.