You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can include this automatically when you commit a change to your
65
65
local git repository using the following command:
66
66
67
-
```
67
+
```bash
68
68
git commit -s
69
69
```
70
70
71
71
## Communication
72
-
**FIXME** Please feel free to connect with us on our [Slack channel](link).
72
+
73
+
Please feel free to connect with us through the [issue tracker](https://github.com/ibm/mcp-context-forge/issues).
73
74
74
75
## Setup
75
-
**FIXME** Please add any special setup instructions for your project to help the developer
76
-
become productive quickly.
76
+
77
+
For setup instructions, please see the [Quick Start sections](README.md#quick-start---pypi) in the README, or refer to the [Installation](README.md#installation) section for detailed instructions.
77
78
78
79
## Testing
79
-
**FIXME** Please provide information that helps the developer test any changes they make
80
-
before submitting.
80
+
81
+
Before submitting changes, run the test suite as outlined in the [Bug-fix PR template](.github/PULL_REQUEST_TEMPLATE/bug_fix.md):
82
+
83
+
1.`make lint` - passes all linters
84
+
2.`make test` - all unit + integration tests green
85
+
3.`make coverage` - ≥ 90%
81
86
82
87
## Coding style guidelines
83
-
**FIXME** Optional, but recommended: please share any specific style guidelines you might
84
-
have for your project.
88
+
89
+
-**Python >= 3.11** with type hints
90
+
-**Formatting**: Black (line length 200), isort (profile=black)
0 commit comments