Skip to content

Add simple test script #10

Add simple test script

Add simple test script #10

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install pytest
pip install numpy
pip install scipy
pip install statsmodels
conda install -c conda-forge psana
- name: Run tests
run: |
pytest testFitFunctions.py
./run_simple_test.sh