Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor Maintenance Tasks #20

Merged
merged 2 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,13 @@ jobs:
python -m pip install .[dev]
python -m pip install coverage
- name: Run Tests
run: |
coverage run --source=. --omit=py2opsin/__init__.py,setup.py,test/* -m unittest discover
uses: nick-fields/retry@v3
with:
max_attempts: 3
timeout_minutes: 15
shell: bash
command: |
micromamba run -n temp coverage run --source=. --omit=py2opsin/__init__.py,setup.py,test/* -m unittest discover
- name: Show Coverage
run: |
coverage report -m
Expand Down
4 changes: 0 additions & 4 deletions test/test_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ class Test_py2opsin_performance(unittest.TestCase):

@classmethod
def setUpClass(self):
self.jar_path = os.path.join(
os.getcwd(),
"opsin-cli-2.7.0-jar-with-dependencies.jar",
)
# list of molecules taken from IUPAC Dissociation Constants dataset
# https://zenodo.org/record/7236453
self.compound_list = [
Expand Down
Loading