-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Is1884/using integration library (#40)
- Loading branch information
Showing
36 changed files
with
320 additions
and
1,317 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,15 +1,48 @@ | ||
<!-- **WIP-** prefix in title if still work in progress --> | ||
<!-- | ||
WIP: work in progress | ||
Consider prefix your PR message with an emoticon | ||
🐛 bugfix | ||
✨ new feature | ||
🔨 refactoring | ||
🏗️ maintenance | ||
📚 documentation | ||
and append (⚠️ devops) if changes in devops configuration required before deploying | ||
SEE https://github.com/dannyfritz/commit-message-emoji | ||
SEE https://emojipedia.org | ||
--> | ||
|
||
## What do these changes do? | ||
|
||
<!-- Please give a short brief about these changes. --> | ||
<!-- Explain reviewers what is this PR about --> | ||
|
||
|
||
## Related issue/s | ||
|
||
<!-- Enumerate other issues | ||
e.g. | ||
- ITISFoundation/osparc-issues#26 : support onboarding of SPARC computational mode, S-D1, Y3M1-12 | ||
- ITISFoundation/osparc-issues#304: (Part 2) Prep2Go: creating features to support complex S4L scripts | ||
--> | ||
|
||
|
||
## How to test | ||
|
||
<!-- Give reviewers some hits or code snippets on how could this be tested --> | ||
|
||
## Related issue number | ||
|
||
## Checklist | ||
|
||
- [ ] I think the code is well written | ||
<!-- This is YOUR section [OPTIONAL] | ||
Add here YOUR checklist/notes her and SEE the progress of the case! | ||
- [ ] Unit tests for the changes exist | ||
- [ ] Documentation reflects the changes | ||
- [ ] If you design a new module, add your user to .github/CODEOWNERS | ||
--> |
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,7 @@ | ||
{ | ||
"recommendations": [ | ||
"eamodio.gitlens", | ||
"ms-python.python", | ||
"samuelcolvin.jinjahtml", | ||
] | ||
} |
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,23 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: Run Test", | ||
"type": "python", | ||
"request": "launch", | ||
"module": "pytest", | ||
"args": [ | ||
"--ff", | ||
"--log-cli-level=INFO", | ||
"--pdb", | ||
"--setup-show", | ||
"-sx", | ||
"-vv", | ||
"${file}" | ||
], | ||
"cwd": "${workspaceFolder}", | ||
"console": "integratedTerminal", | ||
"justMyCode": false | ||
} | ||
] | ||
} |
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,39 @@ | ||
// This is a template. Clone and replace extension ".template.json" by ".json" | ||
{ | ||
"editor.tabSize": 2, | ||
"editor.insertSpaces": true, | ||
"editor.detectIndentation": false, | ||
"eslint.alwaysShowStatus": true, | ||
"files.associations": { | ||
".*rc": "ini", | ||
".env*": "ini", | ||
"Dockerfile*": "dockerfile", | ||
"**/requirements/*.txt": "pip-requirements", | ||
"**/requirements/*.in": "pip-requirements", | ||
"*Makefile": "makefile", | ||
"*.cwl": "yaml" | ||
}, | ||
"files.eol": "\n", | ||
"files.exclude": { | ||
"**/__pycache__": true | ||
}, | ||
"files.insertFinalNewline": true, | ||
"files.trimFinalNewlines": true, | ||
"files.trimTrailingWhitespace": true, | ||
"python.formatting.autopep8Args": [ | ||
"--max-line-length 140" | ||
], | ||
"python.analysis.extraPaths": [ | ||
"./tests" | ||
], | ||
"python.linting.pylintEnabled": true, | ||
"python.linting.enabled": true, | ||
"[python]": { | ||
"editor.detectIndentation": false, | ||
"editor.tabSize": 4 | ||
}, | ||
"[makefile]": { | ||
"editor.insertSpaces": false | ||
}, | ||
"python.testing.pytestEnabled": true | ||
} |
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,6 +1,6 @@ | ||
The MIT License | ||
|
||
Copyright 2019 Sylvain Anderegg <[email protected]>. | ||
Copyright 2019 IT'IS Foundation | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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 +1 @@ | ||
0.2.0 | ||
0.4.0 |
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,36 +1,36 @@ | ||
{ | ||
"author_name": "Your full name", | ||
"author_email": "Your address email (eq. [email protected])", | ||
"author_affiliation": "University of Anywhere, Department of something", | ||
"contact_email": "{{ cookiecutter.author_email }}", | ||
"project_name": "Name of the project", | ||
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}", | ||
"project_package_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}", | ||
"project_short_description": "{{ cookiecutter.project_name }}", | ||
"project_type": [ | ||
"computational" | ||
], | ||
"docker_base": [ | ||
"alpine:3.7", | ||
"alpine:3.8", | ||
"centos:7", | ||
"custom:special-image", | ||
"python:3.6", | ||
"python:3.7", | ||
"python:3.8", | ||
"python:3.6-slim", | ||
"python:3.7-slim", | ||
"python:3.8-slim", | ||
"ubuntu:18.04" | ||
], | ||
"number_of_inputs": 2, | ||
"number_of_outputs": 1, | ||
"project_git_repo": "https://github.com/ITISFoundation/{{ cookiecutter.project_slug }}", | ||
"git_username": "Yourusername", | ||
"default_docker_registry": "itisfoundation", | ||
"release_date": "{% now 'utc', '%Y' %}", | ||
"version": "0.1.0", | ||
"_extensions": [ | ||
"jinja2_time.TimeExtension" | ||
] | ||
} | ||
"author_name": "Your full name", | ||
"author_email": "Your address email (eq. [email protected])", | ||
"author_affiliation": "University of Anywhere, Department of something", | ||
"contact_email": "{{ cookiecutter.author_email }}", | ||
"project_name": "Name of the project", | ||
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}", | ||
"project_package_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}", | ||
"project_short_description": "{{ cookiecutter.project_name }}", | ||
"project_type": [ | ||
"computational" | ||
], | ||
"docker_base": [ | ||
"alpine:3.7", | ||
"alpine:3.8", | ||
"centos:7", | ||
"custom:special-image", | ||
"python:3.6", | ||
"python:3.7", | ||
"python:3.8", | ||
"python:3.6-slim", | ||
"python:3.7-slim", | ||
"python:3.8-slim", | ||
"ubuntu:18.04" | ||
], | ||
"number_of_inputs": 2, | ||
"number_of_outputs": 1, | ||
"project_git_repo": "https://github.com/ITISFoundation/{{ cookiecutter.project_slug }}", | ||
"git_username": "Yourusername", | ||
"default_docker_registry": "itisfoundation", | ||
"release_date": "{% now 'utc', '%Y' %}", | ||
"version": "0.1.0", | ||
"_extensions": [ | ||
"jinja2_time.TimeExtension" | ||
] | ||
} |
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.