Run pytest and show prints:
$ pytest -v -s
test_helloworld.py::TestHello::test_python [TestHello.setUpClass] PASSED
test_helloworld.py::TestHello::test_world PASSED
test_helloworld.py::TestHey::test_world [TestHey.setup_class] PASSED
Run pytest and show prints:
$ pytest -v -s
test_helloworld.py::TestHello::test_python [TestHello.setUpClass] PASSED
test_helloworld.py::TestHello::test_world PASSED
test_helloworld.py::TestHey::test_world [TestHey.setup_class] PASSED
diff --git a/build/virtualenv_packages.txt b/build/virtualenv_packages.txt | |
--- a/build/virtualenv_packages.txt | |
+++ b/build/virtualenv_packages.txt | |
@@ -77,4 +77,5 @@ mozilla.pth:third_party/python/pyasn1 | |
mozilla.pth:third_party/python/pyasn1-modules | |
mozilla.pth:third_party/python/rsa | |
mozilla.pth:third_party/python/PyECC | |
+mozilla.pth:toolkit/components/telemetry/tests/marionette/harness | |
optional:packages.txt:comm/build/virtualenv_packages.txt | |
diff --git a/testing/marionette/mach_commands.py b/testing/marionette/mach_commands.py |
# Colors from https://github.com/sdras/night-owl-vscode-theme | |
# Update your GitHub labels with https://github.com/hackebrot/labels | |
[bug] | |
color = "ffeb95" | |
description = "Bugs and problems with labels" | |
name = "bug" | |
["code quality"] | |
color = "c792ea" |
category | name | tested | |
---|---|---|---|
basic | os | False | |
bookmarks_sync | failure_reason | False | |
bookmarks_sync | finished_at | False | |
bookmarks_sync | incoming | False | |
bookmarks_sync | outgoing | False | |
bookmarks_sync | outgoing_batches | False | |
bookmarks_sync | remote_tree_problems | False | |
bookmarks_sync | started_at | False | |
bookmarks_sync | uid | False |
from dataclasses import dataclass, field | |
from typing import List | |
import pytest | |
@dataclass(frozen=True) | |
class Ingredient: | |
name: str | |
plant_based: bool |