Skip to content

Commit

Permalink
updating
Browse files Browse the repository at this point in the history
  • Loading branch information
ebalogun01 committed Dec 13, 2023
1 parent 1b4ea13 commit 7e816eb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:
jobs:
build:

runs-on: windows-latest
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
Expand All @@ -27,7 +27,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if ( -f requirements.txt ); then pip install -r requirements.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
pytest
Expand Down
Empty file added __init__.py
Empty file.
Empty file added test_files/__init__.py
Empty file.
Empty file.
3 changes: 2 additions & 1 deletion test_files/dev_tests/test_batt_sys_identification.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import unittest
import sys
sys.path.append('../..')
from batt_sys_identification.battery_identification import BatteryParams
import pandas as pd


data = pd.read_csv('../../batt_sys_identification/paper_data/batt_iden_test_data_W10_1.csv')


class MyTestCase(unittest.TestCase):

"""
Expand Down

0 comments on commit 7e816eb

Please sign in to comment.