Skip to content

Commit

Permalink
Test build
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Mar 1, 2024
1 parent 1cbd410 commit e2afb59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/check_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ jobs:
--capture=no
--override-ini=log_cli=true
--override-ini=log_cli_level=INFO
test/unit
test/integration
test/integration/test_create_dss_docker_image.py
# test/unit
# test/integration
env: # Set the secret as an env variable
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY_SECRET }}
Expand Down
6 changes: 3 additions & 3 deletions exasol/ds/sandbox/lib/ansible/ansible_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ def event_handler(self, event: AnsibleEvent) -> bool:
return True

task = event["event_data"].get("task_uuid")
if task and task == self._last_task:
if not task or task == self._last_task:
return True

self._last_task = task
# self._duration_logger.debug(f"task: {task} last {self._last_task}")
self._duration_logger.debug(f"event: {json.dumps(event, indent=4)}")
self._duration_logger.debug(f"duration: {round(duration)} seconds")
# self._duration_logger.debug(f"event: {json.dumps(event, indent=4)}")
self._duration_logger.debug(f"duration: {round(duration)} seconds task {task}")
return True

def run(
Expand Down

0 comments on commit e2afb59

Please sign in to comment.