correct export command #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testing | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up micromamba | |
uses: mamba-org/[email protected] | |
with: | |
# the create command looks like this: | |
# `micromamba create -n test-env python=<the corresponding version> kim-api=2.3.0` | |
environment-name: test-env | |
cache-environment: true | |
create-args: >- | |
-f tests/environment.yml | |
- name: Install AFLOW | |
shell: bash -el {0} | |
run: | | |
wget http://materials.duke.edu/auro/aflow3.tar.xz | |
tar xf aflow3.tar.xz | |
cd aflow.3* | |
make -j4 | |
export PATH=$PATH:$PWD | |
cd .. | |
- name: Install KIM model | |
shell: bash -el {0} | |
run: | | |
kim-api-collections-management install user LJ_Shifted_Bernardes_1958LowCutoff_Ar__MO_720819638419_004 | |
- name: Install | |
shell: bash -el {0} | |
run: | | |
python -m pip install . | |
- name: Run tests | |
shell: bash -el {0} | |
run: | | |
cd tests | |
export KIM_PROPERTY_PATH=$PWD/mock-test-drivers-dir/*/local-props:$PWD/mock-test-drivers-dir/*/local_props | |
pytest |