Skip to content

Commit

Permalink
chore: nice package
Browse files Browse the repository at this point in the history
  • Loading branch information
Topvennie committed May 24, 2024
1 parent 116c018 commit eb9b8ee
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 24 deletions.
2 changes: 1 addition & 1 deletion backend/api/tasks/extra_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def task_extra_check_start(structure_check_result: bool, extra_check_result: Ext

# Zip and save any possible artifacts
memory_zip = io.BytesIO()
if os.listdir(artifacts_directory):
if os.path.exists(artifacts_directory):
with zipfile.ZipFile(memory_zip, 'w') as zip:
for root, _, files in os.walk(artifacts_directory):
for file in files:
Expand Down
45 changes: 23 additions & 22 deletions backend/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ django-sslserver = "^0.22"
djangorestframework = "^3.15.1"
django-rest-swagger = "^2.2.0"
drf-yasg = "^1.21.7"
requests = "^2.32.0"
requests = "<2.32"
cas-client = "^1.0.0"
psycopg2-binary = "^2.9.9"
djangorestframework-simplejwt = "^5.3.1"
Expand Down

0 comments on commit eb9b8ee

Please sign in to comment.