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 dc050b2 commit 8a7649dCopy full SHA for 8a7649d
launch/conftest.py
@@ -12,12 +12,14 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
+from pathlib import PurePath
16
+
17
18
def pytest_ignore_collect(path):
19
# pytest doctest messes up when trying to import .launch.py packages, ignore them.
20
# It also messes up when trying to import launch.logging.handlers due to conflicts with
21
# logging.handlers, ignore that as well.
22
return str(path).endswith((
23
'.launch.py',
- 'logging/handlers.py',
24
+ str(PurePath('logging') / 'handlers.py'),
25
))
0 commit comments