Skip to content

Adding max size to streamline dataset manager #4

Adding max size to streamline dataset manager

Adding max size to streamline dataset manager #4

Workflow file for this run

name: Run Integration tests via Pytest
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
env:
SETUPTOOLS_USE_DISTUTILS: "stdlib"
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
./install.sh
python -m pip install pytest pytest-console-scripts
- name: Run tests
run: python -m pytest .