mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2025-07-07 09:01:43 +00:00
8 lines
151 B
Python
8 lines
151 B
Python
![]() |
from python_environment_check import main
|
||
|
|
||
|
|
||
|
def test_main(capsys):
|
||
|
main()
|
||
|
captured = capsys.readouterr()
|
||
|
assert "FAIL" not in captured.out
|