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 dff4f14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/ramble/ramble/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@
import matplotlib.pyplot as plt
from matplotlib.backends.backend_pdf import PdfPages
import pandas as pd
except ImportError:
logger.die("matplotlib or pandas was not found. Ensure requirements.txt are installed.")
except ImportError as e:
#logger.die("matplotlib or pandas was not found. Ensure requirements.txt are installed.")
print(e)
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 dff4f14

Please sign in to comment.