Skip to content

Commit

Permalink
Backend separation
Browse files Browse the repository at this point in the history
- extract, isolate and package it in a completely independent Python module, versioned and in a way that allows releases on PyPI.org
- fixed error in placeholder for secondary school (data registry defaults)
- added restriction in pytest version to install
- expected number of new cases fix
- data registry update (schema v2.1.1)
- github update
- deprecate ExpertApplication and CO2Application
- changes to reflect schema update 2.0.2
- version update
- Fixed error with f_inf (short-range)
- new folder layout
  • Loading branch information
lrdossan committed Jul 16, 2024
1 parent bad998c commit 9bdc843
Show file tree
Hide file tree
Showing 178 changed files with 2,110 additions and 872 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
env:
PROJECT_ROOT: ./
PROJECT_NAME: caimira
CAIMIRA_TESTS_CALCULATOR_TIMEOUT: 30
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
35 changes: 33 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,55 @@ variables:


# ###################################################################################################
# Test code
# Test code - CAiMIRA (model) and CERN CAiMIRA (CERN's UI)

# A full installation of CAiMIRA, tested with pytest.
# A full installation of CAiMIRA, tested with pytest.
test_install:
extends: .acc_py_full_test
variables:
project_root: ./caimira
project_name: caimira


# A development installation of CAiMIRA tested with pytest.
test_dev:
extends: .acc_py_dev_test
variables:
project_root: ./caimira
project_name: caimira


# A development installation of CAiMIRA tested with pytest.
test_dev-39:
variables:
PY_VERSION: "3.9"
project_root: ./caimira
project_name: caimira
extends: .acc_py_dev_test

# A full installation of CERN CAiMIRA, tested with pytest.
test_install:
extends: .acc_py_full_test
variables:
project_root: ./_cern_caimira
project_name: cern_caimira


# A development installation of CERN CAiMIRA tested with pytest.
test_dev:
extends: .acc_py_dev_test
variables:
project_root: ./_cern_caimira
project_name: cern_caimira


# A development installation of CERN CAiMIRA tested with pytest.
test_dev-39:
variables:
PY_VERSION: "3.9"
project_root: ./_cern_caimira
project_name: cern_caimira
extends: .acc_py_dev_test

# ###################################################################################################
# Test OpenShift config
Expand Down
Loading

0 comments on commit 9bdc843

Please sign in to comment.