|
1 | | -name: 🐛 Bug Report |
2 | | -description: Create a report to help us reproduce and fix the bug |
| 1 | +--- |
| 2 | +name: "\U0001F41B Bug Report" |
| 3 | +about: Create a report to help us reproduce and fix the bug |
| 4 | +title: '' |
| 5 | +labels: '' |
| 6 | +assignees: '' |
3 | 7 |
|
4 | | -body: |
5 | | -- type: textarea |
6 | | - attributes: |
7 | | - label: 🐛 Describe the bug |
8 | | - description: | |
9 | | - Please provide a clear and concise description of what the bug is. |
| 8 | +--- |
10 | 9 |
|
11 | | - If relevant, add a minimal example so that we can reproduce the error by running the code. It is very important for the snippet to be as succinct (minimal) as possible, so please take time to trim down any irrelevant code to help us debug efficiently. We are going to copy-paste your code and we expect to get the same result as you did: avoid any external data, and include the relevant imports, etc. For example: |
| 10 | +**Describe the bug** |
| 11 | +Please provide a clear and concise description of what the bug is. |
12 | 12 |
|
13 | | - ```python |
14 | | - # All necessary imports at the beginning |
15 | | - import pandas as pd |
16 | | - from mostlyai import qa |
| 13 | +**To Reproduce** |
| 14 | +Code to reproduce the behavior: |
| 15 | +``` |
| 16 | +# All necessary imports at the beginning |
| 17 | +import pandas as pd |
| 18 | +from mostlyai import qa |
| 19 | +# A succinct reproducing example trimmed down to the essential parts: |
| 20 | +df = pd.DataFrame({'x': [1, 2, 3]}) |
| 21 | +qa.report(syn_tgt_df=df, trn_tgt_df=df) |
| 22 | +``` |
17 | 23 |
|
18 | | - # A succinct reproducing example trimmed down to the essential parts: |
19 | | - df = pd.DataFrame({'x': [1, 2, 3]} |
20 | | - qa.report(syn_tgt_df=df, trn_tgt_df=df) |
21 | | - ``` |
22 | | - |
23 | | - Please also paste or describe the results you observe instead of the expected results. If you observe an error, please paste the error message including the **full** traceback of the exception. It may be relevant to wrap error messages in ```` ```triple quotes blocks``` ````. |
24 | | - placeholder: | |
25 | | - A clear and concise description of what the bug is. |
26 | | - |
27 | | - ```python |
28 | | - # Sample code to reproduce the problem |
29 | | - ``` |
30 | | - |
31 | | - ``` |
32 | | - The error message you got, with the full traceback. |
33 | | - ``` |
34 | | - validations: |
35 | | - required: true |
36 | | -- type: textarea |
37 | | - attributes: |
38 | | - label: Versions |
39 | | - description: | |
40 | | - Please run the following and paste the output below. |
41 | | - ```sh |
42 | | -- poetry show |
43 | | - ``` |
44 | | - validations: |
45 | | - required: true |
46 | | -- type: markdown |
47 | | - attributes: |
48 | | - value: > |
49 | | - Thanks for contributing 🎉! |
| 24 | +**Expected behavior** |
| 25 | +A clear and concise description of what you expected to happen. |
0 commit comments