first implementation of the normalization min_max and z_score #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pytest - ImputeGAP - 12 | |
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: python3-distutils | |
run : | | |
apt-get install python3-distutils | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
pip install mypy | |
pip install pytest | |
- name: Run pytest | |
run: python -m pytest ./tests/ |