Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kamaki
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
itminedu
kamaki
Commits
d06acec2
Commit
d06acec2
authored
Sep 05, 2015
by
Dionysis Grigoropoulos
Committed by
Giorgos Korfiatis
Oct 30, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initialize Dockerfile and CI file to run tests
parent
9fa0fe6f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
Dockerfile
Dockerfile
+14
-0
ci/tests.sh
ci/tests.sh
+6
-0
No files found.
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