mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2025-07-08 09:32:03 +00:00

* Set up basic test gh worklows * update file paths * env check * add env check * Update requirements.txt * simplify * upd
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
|