-
Notifications
You must be signed in to change notification settings - Fork 8
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
7 changed files
with
146 additions
and
66 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
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 |
---|---|---|
@@ -1,39 +1,59 @@ | ||
# CAMP Versions | ||
|
||
Below is the list of CAMP version, along with a quick summary of the | ||
Below is the list of CAMP versions, along with a quick summary of the | ||
changes that were made. | ||
|
||
* CAMP v0.2 | ||
|
||
* CAMP v0.2.2 | ||
* Update the documentation of the CityGo case to explain why there | ||
are only 10 configurations possible, as noted in [Issue | ||
#24](https://github.com/STAMP-project/camp/issues/23) | ||
* Fix issue with the "buildall.sh" script as per [Issue | ||
23](https://github.com/STAMP-project/camp/issues/23) | ||
* New documentation page that explains how to contribute to the | ||
code and documentation. | ||
|
||
* CAMP v0.2.1 | ||
* Fix issue in the setup.py that prevented building a correct Docker | ||
image. | ||
* CAMP v0.2.0 | ||
|
||
* Consolidated input files (now only one, as per [Issue | ||
#19](https://github.com/STAMP-project/camp/issues/19)) | ||
* Input Validation (as per [Issue | ||
#20](https://github.com/STAMP-project/camp/issues/20) and | ||
[Issue 21](https://github.com/STAMP-project/camp/issues/21)) | ||
* Support for coverage over integer variables (see Atos case-study, | ||
[Issue #22](https://github.com/STAMP-project/camp/issues/22)) | ||
* Integrate the solution of both case-study, so that both are solved | ||
with the same code. | ||
* Revised the documentation ([Issue | ||
#18](https://github.com/STAMP-project/camp/issues/18)) | ||
|
||
* CAMP v0.1 | ||
* First complete draft | ||
* Common command line interface for all three commands, generate, | ||
realize and execute. | ||
|
||
* CAMP v0.2 | ||
|
||
* CAMP v0.2.3 (under development) | ||
|
||
* Fix reporting of missing CAMP model, as per [Issue | ||
#25](https://github.com/STAMP-project/camp/issues/25) | ||
|
||
* Activating Codecov to monitor test code coverage | ||
|
||
* Removing code duplication in tests | ||
|
||
* CAMP v0.2.2 | ||
|
||
* Update the documentation of the CityGo case to explain why | ||
there are only 10 possible configurations, as noted in | ||
[Issue | ||
#24](https://github.com/STAMP-project/camp/issues/24) | ||
|
||
* Fix the generation of the `build_images.sh` script as per | ||
[Issue | ||
#23](https://github.com/STAMP-project/camp/issues/23) | ||
|
||
* New documentation page that explains how to contribute to | ||
the code and documentation. | ||
|
||
* CAMP v0.2.1 | ||
|
||
* Fix issue in the setup.py that prevented building a correct | ||
Docker imag | ||
|
||
* CAMP v0.2.0 | ||
|
||
* Consolidated input files (now only one, as per [Issue | ||
#19](https://github.com/STAMP-project/camp/issues/19)) | ||
|
||
* Input Validation (as per [Issue | ||
#20](https://github.com/STAMP-project/camp/issues/20) and | ||
[Issue #21](https://github.com/STAMP-project/camp/issues/21)) | ||
|
||
* Support for coverage over integer variables (see Atos case-study, | ||
[Issue #22](https://github.com/STAMP-project/camp/issues/22)) | ||
|
||
* Integrate the solution of both case-study, so that both are solved | ||
with the same code. | ||
|
||
* Revised the documentation ([Issue | ||
#18](https://github.com/STAMP-project/camp/issues/18)) | ||
|
||
* CAMP v0.1 | ||
|
||
* First complete draft | ||
|
||
* Common command line interface for all three commands, | ||
generate, realize and execute. |
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,29 @@ | ||
# | ||
# CAMP | ||
# | ||
# Copyright (C) 2017, 2018 SINTEF Digital | ||
# All rights reserved. | ||
# | ||
# This software may be modified and distributed under the terms | ||
# of the MIT license. See the LICENSE file for details. | ||
# | ||
|
||
|
||
|
||
from tests.acceptance.commons import Sample, CampTests | ||
|
||
|
||
class MissingCAMPModelIsReported(CampTests): | ||
|
||
|
||
def setUp(self): | ||
self.sample = Sample("no_camp_model", self.WORKSPACE) | ||
|
||
WORKSPACE = "tmp/acceptance/errors" | ||
|
||
|
||
def test_when_we_generate_all(self): | ||
self.generate_all() | ||
|
||
|
||
|