Fix YAML syntax error in GitHub Actions workflow
Quote environment variable values containing colons to prevent YAML parsing errors
This commit is contained in:
parent
94cc147fed
commit
408b419b94
1 changed files with 6 additions and 6 deletions
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
|
|
@ -38,22 +38,22 @@ jobs:
|
|||
run: |
|
||||
pytest tests/unit/ -v --tb=short --cov=. --cov-report=term-missing
|
||||
env:
|
||||
SQLALCHEMY_DATABASE_URI: sqlite:///:memory:
|
||||
TESTING: 1
|
||||
SQLALCHEMY_DATABASE_URI: "sqlite:///:memory:"
|
||||
TESTING: "1"
|
||||
|
||||
- name: Run functional tests
|
||||
run: |
|
||||
pytest tests/functional/ -v --tb=short
|
||||
env:
|
||||
SQLALCHEMY_DATABASE_URI: sqlite:///:memory:
|
||||
TESTING: 1
|
||||
SQLALCHEMY_DATABASE_URI: "sqlite:///:memory:"
|
||||
TESTING: "1"
|
||||
|
||||
- name: Run integration tests
|
||||
run: |
|
||||
pytest tests/integration/ -v --tb=short
|
||||
env:
|
||||
SQLALCHEMY_DATABASE_URI: sqlite:///:memory:
|
||||
TESTING: 1
|
||||
SQLALCHEMY_DATABASE_URI: "sqlite:///:memory:"
|
||||
TESTING: "1"
|
||||
|
||||
- name: Validate activity YAML files
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue