An ebook/comic library service and web client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
311 B

  1. stages:
  2. - test
  3. Atheneum:Tests:
  4. stage: test
  5. script:
  6. - python3 --version
  7. - python3 -m pip --version
  8. - python3 -m pip install pipenv
  9. - python3 -m pipenv
  10. - cd server
  11. - pipenv install --dev
  12. - pipenv shell
  13. - PYTHONPATH=$(pwd) pytest
  14. - exit
  15. tags:
  16. - linux
  17. - python3