-
-
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.
This project is an effort to extract core pieces of the PyFunceble project into some reusable extensions that others can use - too.
- Loading branch information
0 parents
commit 4151d14
Showing
30 changed files
with
4,992 additions
and
0 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,44 @@ | ||
[run] | ||
concurrency = multiprocessing | ||
parallel = true | ||
sigterm = true | ||
branch = False | ||
|
||
omit = | ||
# omit the following directory | ||
*/pbr/* | ||
*/site-packages/* | ||
*.eggs/* | ||
*/distutils/* | ||
|
||
# omit the following file | ||
tests/* | ||
*/tests/* | ||
|
||
[report] | ||
skip_covered = False | ||
show_missing = True | ||
|
||
# Regexes for lines to exclude from consideration | ||
exclude_lines = | ||
# Have to re-enable the standard pragma | ||
pragma: no cover | ||
|
||
# Never cover __init__ | ||
def __init__ | ||
|
||
# Don't complain about missing debug-only code: | ||
def __repr__ | ||
|
||
# Don't complain if tests don't hit defensive assertion code: | ||
raise AssertionError | ||
raise NotImplementedError | ||
|
||
# Don't complain if non-runnable code isn't run: | ||
if __name__ == .__main__.: | ||
|
||
ignore_errors = True | ||
fail_under = 70 | ||
|
||
[html] | ||
directory = htmlcov |
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,5 @@ | ||
# These are supported funding model platforms | ||
|
||
github: [funilrys] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
ko_fi: funilrys # Replace with a single Ko-fi username | ||
custom: ["https://www.paypal.me/funilrys"] |
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,180 @@ | ||
name: Bug Report | ||
description: Report a but or issue. | ||
title: BUG | My Awesome Bug | ||
labels: | ||
- bug | ||
projects: | ||
- funilrys/6 | ||
assignees: | ||
- funilrys | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: |+ | ||
Thanks for taking the time to fill out this bug report! | ||
Please be patient and rest assured that we will get back to you as soon as possible. | ||
To help us understand and reproduce the issue, please provide as much information as possible. | ||
If you have a question or need help, please ask in our [Discussions](https://github.com/funilrys/PyFunceble/discussions) section. | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: What is the problem you are experiencing? | ||
description: Please describe the problem you are experiencing. | ||
placeholder: | | ||
I am experiencing a problem where... | ||
value: | | ||
I am experiencing a problem where... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: How can we reproduce the problem? | ||
description: Please describe how we can reproduce the problem. | ||
placeholder: | | ||
To reproduce the problem: | ||
1. | ||
2. | ||
3. | ||
4. | ||
value: | | ||
To reproduce the problem: | ||
1. | ||
2. | ||
3. | ||
4. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: screenshot | ||
attributes: | ||
label: Do you have a screenshot? | ||
description: | | ||
If applicable to the problem, please provide some screenshots to help explain the problem. | ||
placeholder: | | ||
<details><summary>Screenshot</summary> | ||
</details> | ||
value: | | ||
<details><summary>Screenshot</summary> | ||
</details> | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: What did you expect to happen? | ||
description: Please describe what you expected to happen. | ||
placeholder: | | ||
I expected that... | ||
value: | | ||
I expected that... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: workaround | ||
attributes: | ||
label: Is there a workaround? | ||
description: Please describe if there is a workaround. | ||
placeholder: | | ||
I found a workaround... | ||
value: | | ||
I found a workaround... | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: configuration | ||
attributes: | ||
label: How did you configure PyFunceble? | ||
description: | | ||
Please provide a representation of the non-default configuration you used or the content of your `.PyFunceble.overwrite.yaml` file. | ||
placeholder: | | ||
```yaml | ||
# .PyFunceble.overwrite.yaml | ||
# Your configuration here. | ||
``` | ||
value: | | ||
```yaml | ||
.PyFunceble.overwrite.yaml | ||
# Your configuration here | ||
``` | ||
validations: | ||
required: false | ||
|
||
- type: dropdown | ||
id: OS | ||
attributes: | ||
label: Which Operating System did you use? | ||
description: | | ||
Please select the operating system you used. | ||
multiple: true | ||
options: | ||
- Arch Linux | ||
- Debian 12 | ||
- Debian 11 | ||
- Debian 10 | ||
- Ubuntu 24.04 LTS | ||
- Ubuntu 23.10 | ||
- Ubuntu 22.04 LTS | ||
- Ubuntu 20.04 LTS | ||
- Linux Other | ||
- Unix or *BSD like OS | ||
- MacOS | ||
- Windows 10 | ||
- Windows 11 | ||
- Windows Server 2016 | ||
- Windows Server 2019 | ||
- Windows Server 2022 | ||
validations: | ||
required: false | ||
|
||
- type: dropdown | ||
id: python_version | ||
attributes: | ||
label: Which Python Version did you use? | ||
description: | | ||
Please select the Python version you used. | ||
multiple: true | ||
options: | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
- "3.12" | ||
- "3.13" | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: pyFunceble_version | ||
attributes: | ||
label: Which PyFunceble Version did you use? | ||
description: | | ||
Please provides the output of the `pyfunceble --version` command. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional context | ||
description: Please provide any additional context related to the problem. | ||
placeholder: | | ||
I would like to add... | ||
value: | | ||
I would like to add... | ||
validations: | ||
required: 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,88 @@ | ||
name: Feature Request | ||
description: Suggest an idea for this project. | ||
title: "Feature Request | My Awesome Idea" | ||
labels: | ||
- enhancement | ||
projects: | ||
- funilrys/6 | ||
assignees: | ||
- funilrys | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: |+ | ||
Thanks for taking the time to fill out this feature request! | ||
lease be patient and rest assured that we will get back to you as soon as possible. | ||
To help us understand and reproduce the issue, please provide as much information as possible. | ||
If you have a question or need help, please ask in our [Discussions](https://github.com/funilrys/PyFunceble/discussions) section. | ||
- type: textarea | ||
id: feature | ||
attributes: | ||
label: What is the feature you'd like to request? | ||
description: Please describe the feature you'd like to request. | ||
placeholder: | | ||
I'd like to request a feature that... | ||
value: | | ||
I'd like to request a feature that... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: What problem are you trying to solve? | ||
description: Please describe the problem you are trying to solve. | ||
placeholder: | | ||
I'm trying to solve a problem where... | ||
value: | | ||
I'm trying to solve a problem where... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: What solution would you like to see? | ||
description: Please describe the solution you'd like to see. | ||
placeholder: | | ||
I'd like to see a solution that... | ||
value: | | ||
I'd like to see a solution that... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Are there any alternatives you've considered? | ||
description: Please describe any alternatives you've considered. | ||
placeholder: | | ||
I've considered alternatives such as... | ||
value: | | ||
I've considered alternatives such as... | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional context | ||
description: Please provide any additional context or screenshots. | ||
placeholder: | | ||
I would like to add... | ||
value: | | ||
I would like to add... | ||
validations: | ||
required: false | ||
|
||
# - type: checkboxes | ||
# id: terms | ||
# attributes: | ||
# label: Code of Conduct | ||
# description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.org/todo). | ||
# options: | ||
# - label: I agree to follow this project's Code of Conduct | ||
# required: 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,46 @@ | ||
name: Documentation Improvement Request | ||
description: Suggestions for improving the documentation. | ||
title: "Documentation | My Awesome Idea" | ||
labels: | ||
- documentation | ||
projects: | ||
- funilrys/6 | ||
assignees: | ||
- funilrys | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: |+ | ||
Thanks for taking the time to fill out this documentation improvement request! | ||
lease be patient and rest assured that we will get back to you as soon as possible. | ||
To help us understand and reproduce the issue, please provide as much information as possible. | ||
If you have a question or need help, please ask in our [Discussions](https://github.com/funilrys/PyFunceble/discussions) section. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What is missing or not easy to understand? | ||
description: | | ||
Please describe what is missing or not easy to understand in the documentation. | ||
placeholder: | | ||
I've found it hard to understand how... | ||
value: | | ||
I've found it hard to understand how... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: suggestion | ||
attributes: | ||
label: What is your suggestion or improvement? | ||
description: | | ||
A clear description of your suggestion and what you would like to improve and how you would like to improve it. | ||
placeholder: | | ||
I suggest that we... | ||
value: | | ||
I suggest that we... | ||
validations: | ||
required: 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,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Discussions | ||
url: https://github.com/funilrys/PyFunceble/discussions | ||
about: Please ask and answer questions here. | ||
- name: Documentation | ||
url: https://docs.pyfunceble.com | ||
about: Find more information about PyFunceble through our documentation. |
Oops, something went wrong.