Domande taggate «pytest»

Semplice e potente test senza boilerplate con Python. Si prega di aggiungere anche il tag "python" per le domande contrassegnate con "pytest".


6
Come si disabilita un test utilizzando pytest?
Diciamo che ho un sacco di test: def test_func_one(): ... def test_func_two(): ... def test_func_three(): ... C'è un decoratore o qualcosa di simile che potrei aggiungere alle funzioni per evitare pytestdi eseguire solo quel test? Il risultato potrebbe assomigliare a ... @pytest.disable() def test_func_one(): ... def test_func_two(): ... def test_func_three(): …
88 python  testing  pytest 


3
TypeError: attrib () ha ottenuto un argomento inaspettato per la parola chiave 'convert'
Questo errore si è verificato durante il test automatizzato di un progetto Python sul server CI utilizzando pytest . Sto usando pytest==4.0.2. Questo errore è appena iniziato a verificarsi, le condotte precedenti sembrano funzionare correttamente. L'errore completo: File "/usr/local/lib/python3.7/site-packages/_pytest/tmpdir.py", line 35, in TempPathFactory lambda p: Path(os.path.abspath(six.text_type(p))) TypeError: attrib() got an …
55 python  pytest 

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.