Skip to content

Commit 1803c4b

Browse files
author
micahhausler
committed
Fixed conflict
2 parents 1476ad3 + cf9d75b commit 1803c4b

25 files changed

+1394
-447
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,10 @@ dist
88
.tox
99
.coverage
1010
html/*
11+
12+
# Compiled Documentation
13+
site/
14+
15+
env/
16+
venv/
17+
.idea/

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ include test-requirements.txt
22
include requirements.txt
33
include requirements3.txt
44
include README.md
5-
include LICENSE
5+
include LICENSE
6+
recursive-include tests *.py

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.PHONY: all build test integration-test unit-test
2+
3+
all: test
4+
5+
build:
6+
docker build -t docker-py .
7+
8+
test: unit-test integration-test
9+
10+
unit-test: build
11+
docker run docker-py python tests/test.py
12+
13+
integration-test: build
14+
docker run -v /var/run/docker.sock:/var/run/docker.sock docker-py python tests/integration_test.py
15+

0 commit comments

Comments
 (0)