Skip to content

Commit 1d795c1

Browse files
committed
Setup test environment
1 parent 5267425 commit 1d795c1

File tree

5 files changed

+21
-0
lines changed

5 files changed

+21
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ dist
55
*.egg
66
.idea
77
tests/*.pyc
8+
html_table_extractor/*.pyc
9+
.tox
10+
virtualenv
11+
output.csv

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
sudo: false
2+
language: python
3+
python:
4+
- 2.7
5+
- 3.5
6+
install: pip install tox-travis
7+
script: tox

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
beautifulsoup4==4.5.3

tests/__init__.pyc

-104 Bytes
Binary file not shown.

tox.ini

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[tox]
2+
envlist = py27,py35
3+
4+
[testenv]
5+
changedir = tests
6+
commands = discover
7+
deps =
8+
-rrequirements.txt
9+
discover

0 commit comments

Comments
 (0)