mirror of
https://github.com/zizmorcore/zizmor.git
synced 2025-12-23 08:47:33 +00:00
13 lines
192 B
Python
13 lines
192 B
Python
import pytest
|
|
|
|
from .common import zizmor
|
|
|
|
|
|
@pytest.mark.benchmark
|
|
def test_zizmor_startup():
|
|
zizmor(["--version"])
|
|
|
|
|
|
@pytest.mark.benchmark
|
|
def test_zizmor_help():
|
|
zizmor(["--help"])
|