Skip to content

Commit

Permalink
Merge pull request #159 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 26, 2023
2 parents 961e592 + ba3b43c commit da756af
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .ci_support/environment-old.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
channels:
- conda-forge
dependencies:
- lammps =2022.06.23
- openmpi
- numpy =1.23.5
- mpi4py =3.1.4
- pympipool =0.7.0
- ase =3.20.1
- scipy =1.9.3
32 changes: 32 additions & 0 deletions .github/workflows/unittests-old.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# 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@v2
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: '3.9'
miniforge-variant: Mambaforge
channels: conda-forge
channel-priority: strict
use-mamba: true
environment-file: .ci_support/environment-old.yml
- name: Setup
shell: bash -l {0}
run: pip install --no-deps .
- name: Test
shell: bash -l {0}
timeout-minutes: 5
run: python -m unittest discover tests

0 comments on commit da756af

Please sign in to comment.