Commit e8f64144 authored by nimrod's avatar nimrod
Browse files

CI: Add editable installation test.

parent b269ab2e
Loading
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -12,3 +12,12 @@ test:
    - twine check dist/*.whl
    - python3 -m pip install dist/*.whl
    - sampleproject

test editable package:
  image: registry.shore.co.il/ci-images:python3
  script:
    - cd "$(mktemp -d)"
    - python3 -m venv .
    - . ./bin/activate
    - pip install -e "$CI_PROJECT_DIR"
    - sampleproject