image: python:3.8

stages:
  - test

before_script:
  - apt-get -qq update 
  - apt-cache search libmariadb
  - apt-get install -y python3-virtualenv virtualenv opam libev4 libev-dev libsndfile1 quelcom # mariadb-server libmariadbclient-dev
  - /usr/bin/virtualenv venv
  - . venv/bin/activate
  - python3 -V
  - pip3 install -r requirements.txt
  - mkdir /etc/aura
  - mkdir /var/log/aura
  - pwd
  - cp config/sample-production.engine.ini config/engine.ini

no_test_cases:
  stage: test
  script:
    - echo "Nothing to see here..."