Codebase list python-fuse / f6e8fe56-1136-4070-bfe9-c24d7b91927f/main .travis.yml
f6e8fe56-1136-4070-bfe9-c24d7b91927f/main

Tree @f6e8fe56-1136-4070-bfe9-c24d7b91927f/main (Download .tar.gz)

.travis.yml @f6e8fe56-1136-4070-bfe9-c24d7b91927f/mainraw · history · blame

language: python

python:
  - 2.7
  - 3.5
  - 3.6

addons:
  apt:
    packages:
    - libfuse-dev

install:
  - python setup.py build

script:
  - sudo modprobe fuse
  - mkdir /tmp/foo && python example/hello.py /tmp/foo && [ "$(cat /tmp/foo/hello)" = "Hello World!" ]
  - mkdir /tmp/bar && python example/fioc.py /tmp/bar && [ -f /tmp/bar/fioc ]