We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3279434 commit 1be2b5eCopy full SHA for 1be2b5e
1 file changed
.github/workflows/github_actions_tests.yml
@@ -12,6 +12,9 @@ jobs:
12
test:
13
runs-on: ubuntu-latest
14
15
+ env:
16
+ BASE_URL: https://your-base-url.com # <-- Set your actual BASE_URL here
17
+
18
steps:
19
- name: Checkout code
20
uses: actions/checkout@v4
@@ -33,12 +36,9 @@ jobs:
33
36
source .venv/bin/activate
34
37
python -m playwright install chrome --with-deps
35
38
- - name: create enviornment file from workflow
39
+ - name: Create .env file from workflow
40
run: |
- set -x
- ENV_FILE=".env"
- echo "BASE_URL=${BASE_URL}" >> "$ENV_FILE"
41
- set +x
+ echo "BASE_URL=${BASE_URL}" > .env
42
43
- name: Run tests with Pytest
44
0 commit comments