Skip to content

Commit 4fdfec4

Browse files
authored
docs: mention discord instead of gitter (#2595)
* docs: mention discord instead of gitter * ignore flaky test
1 parent e5f3663 commit 4fdfec4

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.github/ISSUE_TEMPLATE/config.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
# Ref: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository#configuring-the-template-chooser
22
blank_issues_enabled: false
33
contact_links:
4-
- name: Discussions
5-
url: https://github.com/encode/uvicorn/discussions
6-
about: >
7-
The "Discussions" forum is where you want to start. 💖
8-
- name: Chat
9-
url: https://gitter.im/encode/community
10-
about: >
11-
Our community chat forum.
4+
- name: Discussions
5+
url: https://github.com/encode/uvicorn/discussions
6+
about: The "Discussions" forum is where you want to start. 💖
7+
- name: Chat
8+
url: https://discord.com/invite/SWU73HffbV
9+
about: Our community Discord server. 💬

docs/contributing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Stumbled upon some unexpected behaviour?
1616
Need a missing functionality?
1717

1818
Contributions should generally start out from a previous discussion.
19-
You can reach out someone at the [community chat](https://gitter.im/encode/community)
19+
You can reach out someone at the [community chat](https://discord.com/invite/SWU73HffbV)
2020
or at the [github discussions tab](https://github.com/encode/uvicorn/discussions).
2121

2222
When creating a new topic in the discussions tab, possible bugs may be raised

tests/supervisors/test_reload.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def test_reloader_should_initialize(self) -> None:
9595
reloader = self._setup_reloader(config)
9696
reloader.shutdown()
9797

98-
@pytest.mark.parametrize("reloader_class", [StatReload, WatchFilesReload])
98+
@pytest.mark.parametrize("reloader_class", [StatReload, pytest.param(WatchFilesReload, marks=skip_non_linux)])
9999
def test_reload_when_python_file_is_changed(self, touch_soon: Callable[[Path], None]):
100100
file = self.reload_path / "main.py"
101101

0 commit comments

Comments
 (0)