File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ jobs:
3131
3232 # check that basic features work and we didn't miss to include crucial files
3333 - name : Smoke test (wheel)
34- run : uv run --isolated --no-project --with dist/*.whl tests/unit_tests/test_client .py
34+ run : uv run --isolated --no-project --with dist/*.whl tests/smoke .py
3535
3636 - name : Smoke test (source distribution)
37- run : uv run --isolated --no-project --with dist/*.tar.gz tests/unit_tests/test_client .py
37+ run : uv run --isolated --no-project --with dist/*.tar.gz tests/smoke .py
3838
3939 # we use Trusted publishing, no keys necessary: https://docs.astral.sh/uv/guides/integration/github/#publishing-to-pypi
4040 - name : Publish
Original file line number Diff line number Diff line change 1+ from verda import VerdaClient
2+
3+ def main ():
4+ client = VerdaClient ("x" , "y" )
5+ assert client is not None
6+
7+ if __name__ == "__main__" :
8+ main ()
You can’t perform that action at this time.
0 commit comments