Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
shorowit committed Oct 15, 2024
1 parent ca3bdf5 commit bb8d8b0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
mkdir workflow/tests/test_results
cp -r test_results/results* workflow/tests/test_results
cd workflow/tests
pip install pandas
pip install pandas --break-system-packages
for csv in test_results/*1_*.csv; do csv2="${csv/1_/2_}"; csv_out="${csv/1_/_}"; python merge.py $csv $csv2 $csv_out; rm $csv; rm $csv2; done
- name: Store results
Expand Down Expand Up @@ -206,10 +206,10 @@ jobs:
mkdir workflow/tests/test_results
cp -r test_results/results* workflow/tests/test_results
pip install numpy
pip install pandas
pip install plotly
pip install kaleido
pip install numpy --break-system-packages
pip install pandas --break-system-packages
pip install plotly --break-system-packages
pip install kaleido --break-system-packages
python workflow/tests/compare.py -a results
python workflow/tests/compare.py -a visualize
Expand Down

0 comments on commit bb8d8b0

Please sign in to comment.