Skip to content

Commit

Permalink
update test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pandomic committed Nov 28, 2024
1 parent 89f620e commit 7e10cd9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
{
"step_id": "deploy",
"name": "Deploy Infrastructure",
"step_type" : "deploy",
"step_type" : "step",
"state": "passed",
"time_start": "'"$START_TIME"'",
"time_end": "'"$END_TIME"'"
Expand All @@ -122,7 +122,7 @@ jobs:
{
"step_id": "seed",
"name": "Seed Data",
"step_type" : "deploy",
"step_type" : "step",
"state": "passed",
"time_start": "'"$START_TIME"'",
"time_end": "'"$END_TIME"'"
Expand Down
6 changes: 5 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import logging
import sys

logging.basicConfig(level=logging.DEBUG)
logging.basicConfig(
level=logging.DEBUG,
stream=sys.stdout,
)

0 comments on commit 7e10cd9

Please sign in to comment.