Skip to content

Commit

Permalink
unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
tongzhouxu committed Mar 26, 2024
1 parent 0726b2c commit fc7cd37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
pip install .
- name: Download and set up ncbi datasets client
run: |
curl -o datasets 'https://ftp.ncbi.nlm.nih.gov/pub/datasets/command-line/v2/linux-amd64/datasets'
chmod +x datasets
echo "export PATH=$PATH:./datasets" >> $GITHUB_ENV
mkdir ncbi_datasets
curl -o ncbi_datasets/datasets 'https://ftp.ncbi.nlm.nih.gov/pub/datasets/command-line/v2/linux-amd64/datasets'
chmod +x ncbi_datasets/datasets
echo "export PATH=$PATH:$PWD/ncbi_datasets" >> $GITHUB_ENV
- name: Install pytest
run: |
pip install pytest
- name: Run tests
working-directory: mashpit/test
run: |
ls -al
pytest test.py
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
'python-dotenv',
'tqdm',
'flask',
'dask',
'dask[dataframe]',
]
)

0 comments on commit fc7cd37

Please sign in to comment.