Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
kamaki
Commits
d06acec2
Commit
d06acec2
authored
Sep 05, 2015
by
Dionysis Grigoropoulos
Committed by
Giorgos Korfiatis
Oct 30, 2015
Browse files
Initialize Dockerfile and CI file to run tests
parent
9fa0fe6f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Dockerfile
0 → 100644
View file @
d06acec2
FROM
debian
# Install Python Setuptools
RUN
apt-get update
&&
apt-get
install
-y
python-pip ca-certificates
--no-install-recommends
# Bundle app source
ADD
. /src
# Install test requirements
RUN
pip
install
mock ansicolors
# Initialize app environment
WORKDIR
/src
RUN
python setup.py
install
ci/tests.sh
0 → 100755
View file @
d06acec2
#!/usr/bin/env sh
set
-e
python kamaki/cli/test.py
python kamaki/clients/test.py
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment