Skip to content

Commit 1e3dcd6

Browse files
committed
Configuring build stack
👷 Continuing to configure/debug build stack. Continuing to configure/debug build stack.
1 parent 9228845 commit 1e3dcd6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ language: python
33
python:
44
- "3.7"
55
install:
6-
- "pipenv install"
6+
- "make"
77
script:
8-
- "coverage run --source=process_tracker setup.py test"
8+
- make test
99
after_success:
1010
- coveralls

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
init:
2+
pip install pipenv
3+
pipenv install --dev
4+
5+
test:
6+
python -m unittest tests

0 commit comments

Comments
 (0)