Skip to content

Commit 14eab1a

Browse files
authored
Merge pull request #11 from sdelafond/travis
Travis
2 parents 5ac9156 + fdfee8c commit 14eab1a

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

.travis.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
language: python
2+
3+
python:
4+
- 2.7
5+
- 3.5
6+
- 3.6
7+
8+
addons:
9+
apt:
10+
packages:
11+
- libfuse-dev
12+
13+
install:
14+
- python setup.py build
15+
16+
script:
17+
- sudo modprobe fuse
18+
- mkdir /tmp/foo
19+
- python example/hello.py /tmp/foo

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def run_command(self, command):
9393
# libraries=[]
9494
# runtime_library_dirs=[]
9595
# extra_objects, extra_compile_args, extra_link_args
96-
fusemodule = Extension('fuseparts._fusemodule', sources = ['fuseparts/_fusemodule.c'],
96+
fusemodule = Extension('fuseparts._fuse', sources = ['fuseparts/_fusemodule.c'],
9797
include_dirs = iflags,
9898
extra_compile_args = extra_cflags,
9999
library_dirs = libdirs,

0 commit comments

Comments
 (0)