We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c50d256 commit 70c2825Copy full SHA for 70c2825
pins/tests/test_compat.py
@@ -24,6 +24,11 @@ def board(backend):
24
25
@pytest.fixture(scope="session")
26
def board_manifest(backend):
27
+ # skip on rsconnect, since it can't add a manifest and the pin names
28
+ # are too short for use to upload (rsc requires names > 3 characters)
29
+ if backend.fs_name == "rsc":
30
+ pytest.skip()
31
+
32
board = backend.create_tmp_board(str(PATH_TO_MANIFEST_BOARD.absolute()))
33
34
yield board
0 commit comments