Skip to content

Commit b9ef886

Browse files
author
Brandon Duffany
committed
Add basic configuration
1 parent fd4e87a commit b9ef886

File tree

6 files changed

+25
-0
lines changed

6 files changed

+25
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
.tox
12
*.pyc

MANIFEST

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# file GENERATED by distutils, do NOT edit
2+
README
3+
setup.py

README.md renamed to README

File renamed without changes.

requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pytest==2.6.4
2+
selenium==2.44.0
3+
tox==1.8.1
4+
virtualenv==12.0.6

setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env python
2+
3+
from distutils.core import setup
4+
5+
setup(
6+
name='codebender_selenium',
7+
version='0.0.0',
8+
description='Selenium tests for codebender.cc',
9+
url='http://github.com/codebendercc/seleniumTests',
10+
packages=[],
11+
)

tox.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[tox]
2+
envlist = py32
3+
4+
[testenv]
5+
deps = -rrequirements.txt
6+
commands = py.test

0 commit comments

Comments
 (0)