File: conftest.py

package info (click to toggle)
python-super-collections 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 208 kB
  • sloc: python: 1,065; sh: 34; makefile: 3
file content (6 lines) | stat: -rw-r--r-- 166 bytes parent folder | download
1
2
3
4
5
6
import pytest
from rich import print

@pytest.fixture(autouse=True)
def announce_test(request):
    print(f"[green]\n\n🔧 Executing: {request.node.name}()[/green]")