Skip to content

Commit

Permalink
docs(authors): add Alp Tuna (reanahub#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alputer committed Sep 6, 2024
1 parent 56139a7 commit 3c7442e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ The list of contributors in alphabetical order:

- [Adelina Lintuluoto](https://orcid.org/0000-0002-0726-1452)
- [Agisilaos Kounelis](https://orcid.org/0000-0001-9312-3189)
- [Alp Tuna](https://orcid.org/0009-0001-1915-3993)
- [Anton Khodak](https://orcid.org/0000-0003-3263-4553)
- [Audrius Mecionis](https://orcid.org/0000-0002-3759-1663)
- [Chris Hollowell](https://orcid.org/0000-0003-1239-111X)
Expand Down
6 changes: 3 additions & 3 deletions tests/test_job_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,15 @@ def test_execute_kubernetes_job(
assert len(containers) == 2 # main job + sidecar
assert len(init_containers) == 1
assert init_containers[0]["name"] == KRB5_INIT_CONTAINER_NAME
assert len(env_vars) == 6 # KRB5CCNAME is added
assert len(env_vars) == 7 # KRB5CCNAME is added
assert "trap" in command[0] and expected_command in command[0]
assert "kinit -R" in containers[1]["args"][0]
assert containers[1]["name"] == KRB5_RENEW_CONTAINER_NAME
else:
assert len(containers) == 1
assert len(init_containers) == 0
# custom env + REANA_WORKSPACE + REANA_WORKFLOW_UUID + two secrets
assert len(env_vars) == 5
# custom env + REANA_WORKSPACE + REANA_WORKFLOW_UUID + + DASK_SCHEDULER_URI + two secrets
assert len(env_vars) == 6
assert command == [expected_command]


Expand Down

0 comments on commit 3c7442e

Please sign in to comment.