Update .gitea/workflows/test.yaml
CI Test with Python / test (push) Waiting to run Details

This commit is contained in:
evelynpagente 2025-04-03 06:17:18 +00:00
parent 94548fe7e1
commit 6b69a3a99f
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ jobs:
echo "import unittest" > test_sample.py
echo "class TestSample(unittest.TestCase):" >> test_sample.py
echo " def test_example(self):" >> test_sample.py
echo " assert 1 + 1 == 2" >> test_sample.py
echo " assert 1 + 1 == 3" >> test_sample.py
echo "if __name__ == '__main__':" >> test_sample.py
echo " unittest.main()" >> test_sample.py