Skip to content

Commit

Permalink
GIT: add tqdm to dep in workflow (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
anmorgunov authored Jul 23, 2024
1 parent 9076472 commit 371b5ee
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/codequal.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Code Quality

on: [push, pull_request]

jobs:
qualitycheck:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pandas numpy torch rdkit tqdm
pip install pytest pytest-cov
- name: Run tests
run: pytest --cov=ChemSpaceAL
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pandas numpy torch rdkit
pip install pandas numpy torch rdkit tqdm
pip install pytest pytest-cov
- name: Run tests and collect coverage
Expand Down

0 comments on commit 371b5ee

Please sign in to comment.