-
Notifications
You must be signed in to change notification settings - Fork 28
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 #252 from Breakthrough-Energy/develop
chore: merge develop into master for v0.4.1 release
- Loading branch information
Showing
105 changed files
with
89,826 additions
and
1,883 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[run] | ||
branch = 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: Bug report | ||
labels: bug | ||
assignees: ahurli, BainanXia, danielolsen, jon-hagg, rouille | ||
|
||
--- | ||
|
||
# :beetle: | ||
|
||
- [ ] I have checked that this issue has not already been reported. | ||
|
||
|
||
### Bug summary | ||
A short 1-2 sentences that succinctly describes the bug. | ||
|
||
### Code for reproduction | ||
A minimum code snippet required to reproduce the bug. Please make sure to minimize the | ||
number of dependencies required. | ||
```python | ||
# Paste your code here | ||
# | ||
# | ||
``` | ||
|
||
### Actual outcome | ||
The output produced by the above code, which may be a screenshot, console output, etc. | ||
```shell | ||
# If applicable, paste the console output here | ||
# | ||
# | ||
``` | ||
|
||
### Expected outcome | ||
A description of the expected outcome from the code snippet. | ||
|
||
### Environment | ||
Please specify your platform and versions of the relevant libraries you are using: | ||
* Operating system: | ||
* PreREISE revision (run `git rev-parse origin/HEAD`): | ||
* Python version: | ||
* Jupyter version (if applicable): | ||
* Other libraries: | ||
|
||
### Additional context | ||
Add any other context about the problem here. |
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,36 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: Feature request | ||
labels: feature request | ||
assignees: ahurli, BainanXia, danielolsen, jon-hagg, rouille | ||
|
||
--- | ||
|
||
# :rocket: | ||
|
||
- [ ] Is your feature request essential for your project? | ||
|
||
|
||
### Describe the workflow you want to enable | ||
A clear and concise description of what can be enhanced, e.g., "I wish I could do [...]" | ||
|
||
### Describe your proposed implementation | ||
This should provide a description of the feature request, e.g.: | ||
* "The class `Foo` should have a new method `bar` that allows to [...]" | ||
* "Function `foo` needs a new arguments `bar` to set [...]" | ||
* "Create a new function `foo` to calculate [...]" | ||
|
||
If applicable, try to write a docstring for the desired feature. To illustrate, if you would like to add a new function in a module, provide: | ||
* the name of the function | ||
* a description of the task accomplished by the function | ||
* a list of the input and output parameters together with their types (e.g., `int`, | ||
`str`, `pandas.DataFrame`, etc.) and a short description of its/their meaning | ||
|
||
### Describe alternatives you've considered, if relevant | ||
This should provide a description of any alternative solutions or features you've | ||
considered. | ||
|
||
### Additional context | ||
Add any other context or screenshots in this section, e.g., a plot from an article you | ||
believe would clearly communicate results. |
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,28 @@ | ||
name: Code coverage | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'develop' | ||
|
||
jobs: | ||
coverage: | ||
runs-on: ubuntu-latest | ||
|
||
name: Generate coverage report | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
|
||
- run: python -m pip install --upgrade pip tox | ||
- run: tox -e pytest-local -- --cov-report=xml | ||
|
||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
name: codecov-prereise | ||
fail_ci_if_error: true |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Trigger external workflows | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
run-workflows: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Build and publish docs website | ||
uses: Breakthrough-Energy/actions/workflow-trigger@main | ||
with: | ||
repo: docs | ||
branch: master | ||
workflow_id: 2386877 | ||
token: ${{ secrets.CI_TOKEN_CLONE_REPO }} |
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
Oops, something went wrong.