Skip to content

Commit

Permalink
Merge pull request #92 from pyiron/old_tests
Browse files Browse the repository at this point in the history
Test lower limits of dependencies
  • Loading branch information
jan-janssen authored Nov 24, 2023
2 parents 39d0ded + b671f48 commit 9ff7191
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .ci_support/environment-old.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
channels:
- conda-forge
dependencies:
- pandas =1.5.3
- scandir =1.10.0
30 changes: 30 additions & 0 deletions .github/workflows/unittests_old.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Unittest Lower Bound

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v2.2.0
with:
python-version: '3.9'
mamba-version: "*"
channels: conda-forge
channel-priority: strict
auto-update-conda: true
environment-file: .ci_support/environment-old.yml
miniforge-variant: Mambaforge
- name: Test
shell: bash -l {0}
run: |
pip install --no-deps .
python -m unittest discover tests

0 comments on commit 9ff7191

Please sign in to comment.