Skip to content

Commit ba55fe1

Browse files
committed
add(tests): placeholders for tests
1 parent 2db3d76 commit ba55fe1

File tree

4 files changed

+27
-1
lines changed

4 files changed

+27
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ python:
66
install:
77
- pip install -r requirements.txt
88
script:
9-
# - pytest
9+
- pytest test/ -v
1010
- pycodestyle *.py
1111
notification:
1212
email: false

test/test.py

Whitespace-only changes.

test/test_conventions.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import pytest
2+
3+
4+
def test_angular_convention():
5+
pass
6+
7+
8+
def test_changelog_convention():
9+
pass
10+
11+
12+
def test_symphony_convention():
13+
pass
14+
15+
16+
def test_no_convention():
17+
pass

test/test_utils.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import pytest
2+
3+
4+
def test_get_text():
5+
pass
6+
7+
8+
def test_create_file():
9+
pass

0 commit comments

Comments
 (0)