From 23e168b82f5cf5442793f3d4b45eb296288232a6 Mon Sep 17 00:00:00 2001 From: qnater Date: Wed, 18 Sep 2024 13:58:45 +0200 Subject: [PATCH] first implementation of the normalization min_max and z_score --- .github/workflows/pytest_10.yml | 28 ++++++++++++++++++++++++++++ .github/workflows/pytest_12.yml | 28 ++++++++++++++++++++++++++++ .idea/workspace.xml | 25 ++++++------------------- 3 files changed, 62 insertions(+), 19 deletions(-) create mode 100644 .github/workflows/pytest_10.yml create mode 100644 .github/workflows/pytest_12.yml diff --git a/.github/workflows/pytest_10.yml b/.github/workflows/pytest_10.yml new file mode 100644 index 0000000..2a29a14 --- /dev/null +++ b/.github/workflows/pytest_10.yml @@ -0,0 +1,28 @@ +name: Pytest - ImputeGAP - 10 + +on: + push: + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + lfs: true + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.10' + + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install mypy + pip install pytest + + - name: Run pytest + run: python -m pytest ./tests/ \ No newline at end of file diff --git a/.github/workflows/pytest_12.yml b/.github/workflows/pytest_12.yml new file mode 100644 index 0000000..26e222b --- /dev/null +++ b/.github/workflows/pytest_12.yml @@ -0,0 +1,28 @@ +name: Pytest - ImputeGAP - 10 + +on: + push: + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + lfs: true + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.12' + + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install mypy + pip install pytest + + - name: Run pytest + run: python -m pytest ./tests/ \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 1373135..45cf9c6 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,22 +2,9 @@ - + + - - - - - - - - - - - - - - - +