Skip to content

Commit

Permalink
Fixing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
longxf21 committed Feb 9, 2024
1 parent 4691f39 commit 98e0fdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
- name: Install pytest
run: |
pip install pytest
- name: Add project root to PYTHONPATH
run: echo "PYTHONPATH=${{ github.workspace }}" >> $GITHUB_ENV
- name: Run tests
run: |
pytest tests/test_analyzer.py
Expand Down
3 changes: 1 addition & 2 deletions ratesb_python/common/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
import sys
import os
current_dir = os.path.abspath(os.path.dirname(__file__))
sys.path.append(current_dir)

from custom_classifier import _CustomClassifier
# from SBMLKinetics.common.simple_sbml import SimpleSBML
# from SBMLKinetics.common.reaction import Reaction
from typing import List, Dict, Optional
from SBMLKinetics.common.simple_sbml import SimpleSBML
import util
from common import util
from results import Results

import antimony
Expand Down

0 comments on commit 98e0fdc

Please sign in to comment.