Skip to content

Commit

Permalink
separated test to be optional for automated testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rpakishore committed Mar 7, 2024
1 parent 71efdd1 commit 144a4aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install flit
flit install --deps production
pip install pytest
flit install --deps production --extras test
- name: Test with pytest
run: |
pytest .
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,18 @@ dev = [
"ipykernel",
"ipywidgets",
"pandasgui",
"line-profiler",
"pytest==7.4.3"
"line-profiler"
]

gui = [
"streamlit==1.31.0",
"hilti_profis==0.0.3"
]

test = [
"pytest==7.4.3"
]

[project.urls]
Home = "https://github.com/rpakishore/ak_sap"

Expand Down

0 comments on commit 144a4aa

Please sign in to comment.