Skip to content

Commit 0276e62

Browse files
committed
adding initial test in order to test pytest framework
1 parent ffdead7 commit 0276e62

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,4 @@ ENV/
107107
/.idea
108108
/*.iml
109109

110+
/junit-report.xml

.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: python
2+
python:
3+
- "3.5"
4+
- "3.5-dev"
5+
- "3.6"
6+
- "3.6-dev"
7+
- "3.7-dev"
8+
- "nightly"
9+
install:
10+
- pip install -r requirements.txt
11+
script:
12+
- pytest --verbose

tests/py_algorithms/package_test.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
class TestPackage:
3+
def test_package_presence(self):
4+
"""
5+
Fake test
6+
"""
7+
assert 0 == 0

0 commit comments

Comments
 (0)