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.
package.yml
1 parent 736f42b commit 7fd6558Copy full SHA for 7fd6558
.github/workflows/package.yml
@@ -60,6 +60,10 @@ jobs:
60
uses: actions/checkout@v2
61
with:
62
submodules: true
63
+ - name: Setup Python 3.9
64
+ uses: actions/setup-python@v2
65
+ with:
66
+ python-version: 3.9
67
- name: Download source distribution
68
uses: actions/download-artifact@v2
69
@@ -84,7 +88,11 @@ jobs:
84
88
85
89
86
90
87
- - name: Download source distribution
91
92
93
94
95
+ - name: Download wheel distribution
96
97
98
name: dist
tests/mark.py
@@ -1,2 +1,2 @@
1
-def slow(self):
2
- pass
+def slow(cls):
+ return cls
0 commit comments