Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
Added the unzipping to the github actions which I believe was causing the problem with chunk referenced before assignment
  • Loading branch information
kassabry authored Jan 17, 2024
1 parent 4885a04 commit 97bdee5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
# Tests the BT clustering
- name: Test BT_Clustering
shell: bash --login {0}
run: python active_learning_dd/utils/generate_bt_clustering.py --csv_file_or_dir=datasets/sample_data/unlabeled_data/unlabeled_0.csv --output_dir=./tmp_test --feature_name="Morgan FP_2_1024" --cutoff=0.4
run: |
gzip -dk datasets/sample_data/unlabeled_data/unlabeled_0.csv.gz
python active_learning_dd/utils/generate_bt_clustering.py --csv_file_or_dir=datasets/sample_data/unlabeled_data/unlabeled_0.csv --output_dir=./tmp_test --feature_name="Morgan FP_2_1024" --cutoff=0.4
# Tests that base Simulation Runner
- name: Test Simulation Runner
shell: bash --login {0}
Expand Down

0 comments on commit 97bdee5

Please sign in to comment.