-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
100 changed files
with
1,302 additions
and
2,003 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,4 @@ omit = | |
tests/* | ||
conf/* | ||
*/__init__.py | ||
|
||
|
||
*/lib/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
fiware-skuld: | ||
image: fiware-skuld | ||
environment: | ||
- OS_AUTH_URL | ||
- OS_USERNAME | ||
- OS_TENANT_NAME | ||
- OS_PASSWORD | ||
- OS_REGION_NAME | ||
- OS_PROJECT_DOMAIN_NAME | ||
- OS_USER_DOMAIN_NAME | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM ubuntu | ||
RUN apt-get update && apt-get -y install python-pip python-dev \ | ||
libmysqlclient-dev libpq-dev \ | ||
libxml2-dev libxslt1-dev git \ | ||
libffi-dev zip python-mysqldb | ||
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install mysql-server | ||
RUN pip install --upgrade pip | ||
RUN pip install git+https://github.com/telefonicaid/fiware-skuld@develop | ||
RUN git clone https://github.com/telefonicaid/fiware-skuld/ /opt/fiware-skuld/ | ||
WORKDIR /opt/fiware-skuld/ | ||
COPY settings.py conf/settings.py | ||
WORKDIR /opt/fiware-skuld/tests/acceptance/ | ||
RUN pip install -r requirements.txt | ||
RUN mkdir testreport | ||
COPY configuration.py commons/configuration.py | ||
COPY start.sh . | ||
CMD ./start.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM ubuntu | ||
RUN apt-get update && apt-get -y install python-pip python-dev \ | ||
libmysqlclient-dev libpq-dev \ | ||
libxml2-dev libxslt1-dev git \ | ||
libffi-dev zip python-mysqldb | ||
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install mysql-server | ||
RUN git clone https://github.com/telefonicaid/fiware-skuld/ /opt/fiware-skuld/ | ||
WORKDIR /opt/fiware-skuld/ | ||
RUN pip install -r requirements.txt | ||
RUN pip install -r test-requirements.txt | ||
RUN python setup.py install | ||
RUN mkdir coverage | ||
RUN mkdir test_results | ||
CMD nosetests --with-coverage --cover-package=./ --cover-xml --cover-xml-file=coverage/coverage.xml --with-xunit --xunit-file=test_results/TEST-nosetests.xml --exe |
Oops, something went wrong.