Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test Lower bounds #1240

Merged
merged 16 commits into from
Dec 3, 2023
23 changes: 23 additions & 0 deletions .ci_support/environment-old.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
channels:
- conda-forge
dependencies:
- aimsgb =1.0.2
- ase =3.22.1
- atomistics =0.1.12
- defusedxml =0.7.0
- h5py =3.9.0
- matplotlib-base =3.8.2
- mendeleev =0.12.0
- mp-api =0.37.0
- numpy =1.26.0
- pandas =2.0.3
- phonopy =2.20.0
- pint =0.18
- pyiron_base =0.6.10
- pylammpsmpi =0.2.7
- pyscal =2.10.4
- scikit-learn =1.2.1
- scipy =1.11.1
- seekpath =1.9.5
- spglib =2.0.2
- structuretoolkit =0.0.14
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 @@
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: |
python .ci_support/pyironconfig.py
pip install --no-deps .
python -m unittest discover tests
Loading