Skip to content

Commit

Permalink
Refactor to python.
Browse files Browse the repository at this point in the history
  • Loading branch information
everaldorodrigo committed Aug 16, 2024
1 parent 9fa0459 commit 8923f45
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/scheduled_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,11 @@ jobs:
# os.environ["AWS_DEFAULT_REGION"] = "AWS_REGION"
# os.environ["SLACK_WEBHOOK_URL"] = "SLACK_WEBHOOK_URL"
# os.environ["SLACK_CHANNEL"] = "SLACK_CHANNEL"
subprocess.run(["python", "-m", "venv", ".venv_test"], check=True)
subprocess.run([".venv_test/bin/pip", "install", "--upgrade", "pip"], check=True)
subprocess.run([".venv_test/bin/pip", "install", "-r", "requirements_web.txt"], check=True)
subprocess.run([".venv_test/bin/pip", "install", "pytest", "boto3", "jq"], check=True)
# subprocess.run(["python", "-m", "venv", ".venv_test"], check=True)
# subprocess.run([".venv_test/bin/pip", "install", "--upgrade", "pip"], check=True)
# subprocess.run([".venv_test/bin/pip", "install", "-r", "requirements_web.txt"], check=True)
# subprocess.run([".venv_test/bin/pip", "install", "pytest", "boto3", "jq"], check=True)
print(f" └─ Done!")
# Determine repository name and set build version file name
def determine_repo_name():
Expand Down

0 comments on commit 8923f45

Please sign in to comment.