Skip to content

Commit

Permalink
Fix wrong path to pickles in test 6
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaMolod committed Oct 24, 2023
1 parent d340c4e commit 78b2eee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
eval "$(conda shell.bash hook)"
conda activate AlphaPulldown
pytest -s test/test_custom_db.py
pytest -s test/remove_clashes_low_plddt.py
pytest -s test/test_remove_clashes_low_plddt.py
#TODO: mock AF dbs and add more tests
- name: Build and Push to Docker Hub
uses: mr-smithers-excellent/docker-build-push@v5
Expand Down
4 changes: 2 additions & 2 deletions test/check_predict_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ def testRun_6(self):
"""
#checks that features contain pickle files
self.assertTrue(os.path.exists(os.path.join(
self.test_data_dir, "true_multimer", "features", "3L4Q_A_and_3L4Q_C", "3L4Q_A.pkl")))
self.test_data_dir, "true_multimer", "features", "3L4Q_A.pkl")))
self.assertTrue(os.path.exists(os.path.join(
self.test_data_dir, "true_multimer", "features", "3L4Q_A_and_3L4Q_C", "3L4Q_Cll.pkl")))
self.test_data_dir, "true_multimer", "features", "3L4Q_C.pkl")))
self.args = [
sys.executable,
self.script_path,
Expand Down

0 comments on commit 78b2eee

Please sign in to comment.