Skip to content

Commit

Permalink
Merge pull request #33 from MetaSys-LISBP/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
llegregam committed May 22, 2023
2 parents 6536b31 + 3c6fa13 commit cd46a00
Show file tree
Hide file tree
Showing 3 changed files with 2,979 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/deploy_test_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Build and publish python package to test pypi

on: [push]

jobs:
publish-service-client-package:
runs-on: ubuntu-latest
steps:
- name: Publish PyPi package
uses: code-specialist/pypi-poetry-publish@main
with:
PYTHON_VERSION: "3.10"
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISH_REGISTRY_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
PUBLISH_REGISTRY: "https://test.pypi.org/legacy/"
2 changes: 1 addition & 1 deletion physiofit/base/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def output_recap(self, export_path: str):
f"detected at indice {idx}"
)
final_df = concat(self.multiple_experiments)
final_df.to_csv(f"{str(Path(export_path))}/recap.csv")
final_df.to_csv(f"{str(Path(export_path))}/summary.csv")



Expand Down
Loading

0 comments on commit cd46a00

Please sign in to comment.