Skip to content

Commit

Permalink
Merge pull request #1 from levje/levje/dpo-max-size
Browse files Browse the repository at this point in the history
Adding max size to streamline dataset manager
  • Loading branch information
levje authored Nov 6, 2024
2 parents 6918029 + f85cc30 commit 87917b4
Show file tree
Hide file tree
Showing 6 changed files with 709 additions and 135 deletions.
45 changes: 0 additions & 45 deletions .github/workflows/pythonpackage.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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 .
Loading

0 comments on commit 87917b4

Please sign in to comment.