Skip to content

Commit

Permalink
Merge pull request #76 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 af462e2 + e3f4326 commit 60ec708
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .ci_support/environment-old.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
channels:
- conda-forge
dependencies:
- ase =3.22.1
- numpy =1.23.5
- scipy =1.11.1
- spglib =2.0.2
- phonopy =2.20.0
- structuretoolkit =0.0.10
- seekpath =1.9.0
- lammps =2022.06.23
- pandas =1.5.3
- pylammpsmpi =0.2.1
- jinja2 =2.11.3
- iprpy-data =2023.07.25
29 changes: 29 additions & 0 deletions .github/workflows/unittests_old.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Unittest Lower Bound

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

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

0 comments on commit 60ec708

Please sign in to comment.