Skip to content

Commit

Permalink
add downloading files to nameai ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Byczong committed Feb 12, 2025
1 parent 4740bf9 commit 23c28f1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 33 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/nameai-python-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ jobs:

- name: Install dependencies
working-directory: ./apps/api.nameai.io
run: poetry install --extras "lambda"
run: poetry install --extras "lambda" --with dev

- name: Download required data files
working-directory: ./apps/api.nameai.io
env:
S3_BUCKET: ${{ secrets.S3_BUCKET }}
S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY_ID }}
S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_ACCESS_KEY }}
run: poetry run python -m nameai.download

- name: Run tests
working-directory: ./apps/api.nameai.io
Expand Down
32 changes: 0 additions & 32 deletions apps/api.nameai.io/tests/conftest.py

This file was deleted.

0 comments on commit 23c28f1

Please sign in to comment.