Skip to content

Commit

Permalink
revert runner.py
Browse files Browse the repository at this point in the history
  • Loading branch information
seansteberisal committed Oct 31, 2024
1 parent 23d3dd6 commit 095dde5
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,10 @@

# Convert to behave commandline args
product_tag = argument.product.lower().replace("-", "_")
if product_tag in ["eps_fhir_prescribing", "eps_fhir_dispensing"]:
base_product_tag = "eps_fhir"
endpoint_tag = product_tag.replace("eps_fhir_", "")
tags = f" --tags {base_product_tag} --tags {endpoint_tag}"
if argument.tags:
tags = f" --tags {product_tag} --tags {argument.tags} "
else:
tags = f" --tags {product_tag}"

if argument.tags:
tags += f" --tags {argument.tags}"

PRODUCT = f" -D product={argument.product}"
ENV = f" -D env={argument.env}"

Expand Down

0 comments on commit 095dde5

Please sign in to comment.