Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • pelson/geoff-app
  • geoff/geoff-app
2 results
Show changes
Commits on Source (2)
......@@ -12,7 +12,6 @@ variables:
project_name: "acc_app_optimisation"
PY_VERSION: "3.11"
ACC_PY_BASE_IMAGE_TAG: '2023.06'
ACC_PY_BASE_IMAGE_NAME: "acc-py_el9_gui_ci"
build_wheel:
......@@ -26,16 +25,18 @@ build_wheel:
# - !reference [.acc_py_pre-commit, before_script]
# - python -m pip install pylint .[test]
test_pre-commit_py311:
variables:
PY_VERSION: "3.11"
extends: .acc_py_pre-commit
test_pre-commit:
extends:
- .acc_py_pre-commit
- .acc_py_run_on_acc_py
before_script:
- !reference [.acc_py_pre-commit, before_script]
- python -m pip install pylint .[test]
- !reference [ .acc_py_run_on_acc_py, before_script ]
- !reference [ .acc_py_pre-commit, before_script ]
#test_wheel_py37:
# extends: .acc_py_wheel_test
# variables:
# ACC_PY_BASE_IMAGE_NAME: "acc-py_el9_gui_ci"
# script:
# - mkdir -p ~/not-the-source-dir && cd ~/not-the-source-dir
# - run_headless python -m pytest --pyargs ${project_name}
......@@ -45,6 +46,7 @@ test_pre-commit_py311:
# variables:
# PY_VERSION: "3.9"
# ACC_PY_BASE_IMAGE_TAG: '2021.12'
# ACC_PY_BASE_IMAGE_NAME: "acc-py_el9_gui_ci"
# script:
# - mkdir -p ~/not-the-source-dir && cd ~/not-the-source-dir
# - run_headless python -m pytest --pyargs ${project_name}
......@@ -54,6 +56,7 @@ test_wheel:
variables:
PY_VERSION: "3.11"
ACC_PY_BASE_IMAGE_TAG: '2023.06'
ACC_PY_BASE_IMAGE_NAME: "acc-py_el9_gui_ci"
script:
- mkdir -p ~/not-the-source-dir && cd ~/not-the-source-dir
- run_headless python -m pytest --pyargs ${project_name}
......