Skip to content

Commit

Permalink
Add github action for cd.yaml and a small fix for running tests locally
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon committed Dec 14, 2024
1 parent ad416eb commit a882453
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Empty file added .github/workflows/cd.yaml
Empty file.
2 changes: 1 addition & 1 deletion datalab/datalab_session/s3_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def get_fits(basename: str, source: str = 'archive'):

# create the tmp directory if it doesn't exist
if not os.path.exists(settings.TEMP_FITS_DIR):
os.makedirs(settings.TEMP_FITS_DIR)
os.makedirs(settings.TEMP_FITS_DIR, exist_ok=True)

match source:
case 'archive':
Expand Down

0 comments on commit a882453

Please sign in to comment.