Skip to content

Commit

Permalink
Merge 5c0f301 into 621e177
Browse files Browse the repository at this point in the history
  • Loading branch information
bmbouter committed Jul 3, 2019
2 parents 621e177 + 5c0f301 commit 2b205dc
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions pulp_smash/pulp3/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
"""Constants for Pulp 3 tests."""
from urllib.parse import urljoin

from pulp_smash.api import ( # noqa: F401
_P3_TASK_END_STATES as P3_TASK_END_STATES,
)
from pulp_smash.api import _P3_TASK_END_STATES as P3_TASK_END_STATES # noqa: F401

BASE_PATH = "/pulp/api/v3/"

Expand All @@ -24,13 +22,9 @@

CONTENT_PATH = urljoin(BASE_PATH, "content/")

DOWNLOAD_POLICIES = ("immediate", "on_demand", "streamed")
IMMEDIATE_DOWNLOAD_POLICIES = ("immediate",)

JWT_PATH = urljoin(BASE_PATH, "jwt/")

LAZY_DOWNLOAD_POLICIES = tuple(
[item for item in DOWNLOAD_POLICIES if item != "immediate"]
)
ON_DEMAND_DOWNLOAD_POLICIES = ("on_demand", "streamed")

MEDIA_PATH = "/var/lib/pulp"

Expand Down

0 comments on commit 2b205dc

Please sign in to comment.