Skip to content

Commit 0e96290

Browse files
committed
Configuring build stack
👷 Continuing to configure/debug build stack. Continuing to configure/debug build stack.
1 parent 385dbce commit 0e96290

File tree

3 files changed

+201
-0
lines changed

3 files changed

+201
-0
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
dist: xenial
12
language: python
23
python:
34
- "3.7"
45
install:
56
- "pipenv install"
7+
script: unittest
68
after_success:
79
- coveralls

Pipfile.lock

Lines changed: 188 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

process_tracker/process.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Process Tracking Framework
2+
# Process class - methods to work with data integration processes within the process tracking framework
3+
4+
5+
class Process:
6+
7+
def __init__(self, process):
8+
"""
9+
Initializing the process object with base elements
10+
"""
11+
self.process = process

0 commit comments

Comments
 (0)