forked from reanahub/reana-job-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial release of the package documentation with a simple Travis CI configuration and a simple test suite. (closes reanahub#7) Signed-off-by: Tibor Simko <[email protected]>
- Loading branch information
1 parent
c181e0f
commit 930b7bd
Showing
24 changed files
with
991 additions
and
36 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# This file is part of REANA. | ||
# Copyright (C) 2017 CERN. | ||
# | ||
# REANA is free software; you can redistribute it and/or modify it under the | ||
# terms of the GNU General Public License as published by the Free Software | ||
# Foundation; either version 2 of the License, or (at your option) any later | ||
# version. | ||
# | ||
# REANA is distributed in the hope that it will be useful, but WITHOUT ANY | ||
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR | ||
# A PARTICULAR PURPOSE. See the GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License along with | ||
# REANA; if not, write to the Free Software Foundation, Inc., 59 Temple Place, | ||
# Suite 330, Boston, MA 02111-1307, USA. | ||
# | ||
# In applying this license, CERN does not waive the privileges and immunities | ||
# granted to it by virtue of its status as an Intergovernmental Organization or | ||
# submit itself to any jurisdiction. | ||
|
||
notifications: | ||
email: false | ||
|
||
sudo: true | ||
|
||
language: python | ||
|
||
cache: | ||
- pip | ||
|
||
python: | ||
- "3.5" | ||
|
||
before_install: | ||
- travis_retry pip install --upgrade pip setuptools py | ||
- travis_retry pip install twine wheel coveralls | ||
|
||
install: | ||
- travis_retry pip install -e .[all] | ||
|
||
script: | ||
- ./run-tests.sh | ||
|
||
after_success: | ||
- coveralls |
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,7 @@ | ||
Authors | ||
======= | ||
|
||
* Diego Rodriguez <[email protected]> | ||
* Jiri Kuncar <[email protected]> | ||
* Lukas Heinrich <[email protected]> | ||
* Tibor Simko <[email protected]> |
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,13 @@ | ||
Changes | ||
======= | ||
|
||
Version 0.0.1 (YYYY-MM-DD) | ||
-------------------------- | ||
|
||
- Initial public release. | ||
|
||
|
||
.. admonition:: CAVEAT LECTOR | ||
|
||
Please note that REANA is in an early developer preview alpha stage. | ||
No detailed changelog is provided yet. |
Oops, something went wrong.