Skip to content

Commit

Permalink
changed codecov action 4 to 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaranu committed May 9, 2024
1 parent 87eb9c1 commit 8397561
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: pytest --cov=DrugDiscMDConformers --cov-report=xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion src/DrugDiscMDConformers/sol_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def run_solvated_optimization(num1: int, num2: int) -> None:
os.chdir('molecular_files')
os.chdir('rdkit_conformers')
v: List[str] = ["%.4d" % i for i in range(num1, num2)]

# Generating a pool of parallel processes
with Pool(46) as p: # Using 46 processes due to the limit of 48 cores on the computing machine
p.map(e2, v)
Expand Down

0 comments on commit 8397561

Please sign in to comment.