Skip to content

Commit

Permalink
test pandas dep fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rfbgo committed Oct 22, 2024
1 parent dbd9f5b commit 8739715
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/ramble/ramble/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@
import matplotlib.pyplot as plt
from matplotlib.backends.backend_pdf import PdfPages
import pandas as pd
except ImportError:
except ImportError as e:
logger.die("matplotlib or pandas was not found. Ensure requirements.txt are installed.")
raise e


class ReportVars(Enum):
Expand Down
2 changes: 2 additions & 0 deletions share/ramble/cloud-build/ramble-pr-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ steps:
spack load py-pip ^python
python -m pip install -r requirements.txt
python -m pip install pandas
python -m pip install matplotlib
echo "Spack version is $(spack --version)"
echo "Python version is $(python3 --version)"
Expand Down

0 comments on commit 8739715

Please sign in to comment.