Add missing statsmodels and scipy dependencies for CI #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.9 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.9" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install Flask==2.2.3 Werkzeug==2.3.8 flask-socketio==5.5.1 pandas==1.5.3 numpy==1.24.3 \ | |
| scikit-learn==1.3.0 scipy==1.11.1 requests==2.28.2 "urllib3<2" pytest==7.4.0 pytest-flask==1.2.0 \ | |
| python-dotenv==1.0.0 plotly==5.14.1 matplotlib==3.7.1 seaborn==0.12.2 statsmodels==0.14.0 | |
| - name: Run tests | |
| env: | |
| TESTING: "True" | |
| run: | | |
| python -m pytest tests/ app/tests/ -v --ignore=app/tests/test_browser.py -x |