Support dynamic ports

This commit is contained in:
hcooper
2024-01-23 10:49:43 -08:00
committed by Hereward Cooper
parent f294561d57
commit 1273b20224
27 changed files with 30 additions and 55 deletions

View File

@@ -4,9 +4,7 @@ from datetime import datetime, timezone
import httpx
from ..conftest import assert_dicts_compatible
URL = "http://spoolman:8000"
from ..conftest import URL, assert_dicts_compatible
def test_add_vendor():

View File

@@ -2,7 +2,7 @@
import httpx
URL = "http://spoolman:8000"
from ..conftest import URL
def test_delete_vendor():

View File

@@ -7,9 +7,7 @@ from typing import Any
import httpx
import pytest
from ..conftest import assert_lists_compatible
URL = "http://spoolman:8000"
from ..conftest import URL, assert_lists_compatible
@dataclass

View File

@@ -2,7 +2,7 @@
import httpx
URL = "http://spoolman:8000"
from ..conftest import URL
def test_get_vendor():

View File

@@ -2,7 +2,7 @@
import httpx
URL = "http://spoolman:8000"
from ..conftest import URL
def test_update_vendor():