https://github.com/pupil-labs/pupil
Revision d2cb1edc3431e95c3a87970f9cdd47791a3a5bd2 authored by Patrick Faion on 27 January 2020, 16:28:21 UTC, committed by Patrick Faion on 27 January 2020, 16:28:21 UTC
1 parent 5b50663
Raw File
Tip revision: d2cb1edc3431e95c3a87970f9cdd47791a3a5bd2 authored by Patrick Faion on 27 January 2020, 16:28:21 UTC
Change user-facing ghost-mode to 'disconnected'.
Tip revision: d2cb1ed
.travis.yml
# Travis integration for running unittests on pupil-labs/pupil

# NOTE: Tests are currently only ran on Ubuntu 18.04
# There's a docker image pupillabs/pupil-docker-ubuntu:latest which contains all
# required dependencies for the test-suite to run.

os: minimal
services: docker

before_install:
  - docker pull pupillabs/pupil-docker-ubuntu:latest
  - chmod +x ./.travis/*.sh

script:
  - >
    docker run --rm
    -v `pwd`:/repo
    -w /repo
    pupillabs/pupil-docker-ubuntu:latest
    /bin/bash /repo/.travis/run_tests.sh
back to top