mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2026-04-10 12:33:42 +00:00
Set up basic test gh worklows (#79)
* Set up basic test gh worklows * update file paths * env check * add env check * Update requirements.txt * simplify * upd
This commit is contained in:
committed by
GitHub
parent
9d6da22ebb
commit
ca96abac8a
7
appendix-A/02_installing-python-libraries/tests.py
Normal file
7
appendix-A/02_installing-python-libraries/tests.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from python_environment_check import main
|
||||
|
||||
|
||||
def test_main(capsys):
|
||||
main()
|
||||
captured = capsys.readouterr()
|
||||
assert "FAIL" not in captured.out
|
||||
Reference in New Issue
Block a user