Skip to content

Refactoring on the running and tidy up the repo #1176

Refactoring on the running and tidy up the repo

Refactoring on the running and tidy up the repo #1176

Workflow file for this run

---
# Run basic tests for this app on the latest aiidalab-docker image.
name: CI unit test
on: [push, pull_request]
jobs:
fast-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install uv
run: |
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.2.4/uv-installer.sh | sh
- name: Install dependencies for test
run: |
uv pip install .[dev]
- name: Pull the image and Run pytest
run: |
pytest -v tests -m "not slow"
slow-tests:
needs: [fast-tests]
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install uv
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.2.4/uv-installer.sh | sh
- name: Install dependencies for test
run: |
uv pip install .[dev]
- name: Pull the image and Run pytest
run: |
pytest -v tests -m "slow"
edge-aiida-core-tests:
# This is to test the plugin is compatible with the main branch of aiida-core
needs: [slow-tests]
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install uv
run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.2.4/uv-installer.sh | sh
- name: Install dependencies and edge aiida-core for test
run: |
uv pip install .[dev]
pip uninstall --yes aiida-core
git clone --depth 1 https://github.com/aiidateam/aiida-core.git
uv pip install ./aiida-core
- name: Check aiida-core version is the edget ('post' in version tag)
run: |
if verdi --version | grep -q "post"; then
echo $(verdi --version)
else
echo $(verdi --version)
exit 1
fi
- name: Pull the image and Run pytest
run: |
pytest -v tests