https://github.com/pupil-labs/pupil
Raw File
Tip revision: ff86b2ea863b72fdc45a842d092d26031e6fa905 authored by Patrick Faion on 21 November 2019, 13:04:40 UTC
Merge pull request #1744 from pupil-labs/fixation_detector_fixes
Tip revision: ff86b2e
.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