language: python python: - "3.6" before_install: - sudo add-apt-repository universe -y - sudo apt-get update -q - sudo apt-get install -y redis-server redis-tools - sudo systemctl start redis-server - pip3 install -r ./ci/requirements_dev.txt install: - pip3 install -r requirements.txt after_install: - bash ./ci/check_code.sh before_script: - python3 ./ci/ci_prepare.py script: - nohup python3 ./ci/ci_dev_server.py & - sleep 20 - python3 ./ci/ci_test.py after_script: - bash ./ci/ci_commit.sh