Skip to content

Commit

Permalink
swapped 2.10 for 2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
raddessi committed Feb 7, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent eea981f commit 7fae496
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/py3.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
python: [3.6, 3.8]
netbox: ["2.10", "3.0", "3.1"]
netbox: ["2.11", "3.0", "3.1"]

steps:
- uses: actions/checkout@v2
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
from packaging import version


DEFAULT_NETBOX_VERSIONS = "2.10, 3.0, 3.1"
DEFAULT_NETBOX_VERSIONS = "2.11, 3.0, 3.1"


def pytest_addoption(parser):
2 changes: 1 addition & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ def get_netbox_docker_version_tag(netbox_version):
tag = "1.5.1"
elif (major, minor) == (3, 0):
tag = "1.5.1"
elif (major, minor) == (2, 10):
elif (major, minor) == (2, 11):
tag = "1.0.1"
else:
raise NotImplementedError(

0 comments on commit 7fae496

Please sign in to comment.