-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #361 from KNMI/optimize-getFilesAndIndicesForDimen…
…sions Optimize getFilesAndIndicesForDimensions
- Loading branch information
Showing
59 changed files
with
537 additions
and
344 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ USER root | |
LABEL maintainer="[email protected]" | ||
|
||
# Version should be same as in Definitions.h | ||
LABEL version="2.26.0" | ||
LABEL version="2.27.0" | ||
|
||
# Try to update image packages | ||
RUN apt-get -q -y update \ | ||
|
@@ -85,16 +85,21 @@ COPY data /adaguc/adaguc-server-master/data | |
COPY python /adaguc/adaguc-server-master/python | ||
|
||
######### Third stage, test ############ | ||
# To run the tests against a postgres db, see docs/test_postgesql.md | ||
FROM base AS test | ||
|
||
ENV TEST_IN_CONTAINER 1 | ||
|
||
COPY requirements-dev.txt /adaguc/adaguc-server-master/requirements-dev.txt | ||
RUN pip install --no-cache-dir -r requirements-dev.txt | ||
|
||
COPY tests /adaguc/adaguc-server-master/tests | ||
COPY runtests.sh /adaguc/adaguc-server-master/runtests.sh | ||
COPY runtests_psql.sh /adaguc/adaguc-server-master/runtests_psql.sh | ||
|
||
# Run adaguc-server functional and regression tests | ||
# Run adaguc-server functional and regression tests. See also `./doc/developing/testing.md` | ||
RUN bash runtests.sh | ||
# RUN bash runtests_psql.sh | ||
|
||
# Create a file indicating that the test succeeded. This file is used in the final stage | ||
RUN echo "TESTSDONE" > /adaguc/adaguc-server-master/testsdone.txt | ||
|
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
Oops, something went wrong.