Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
Make tests executable (#654)
Browse files Browse the repository at this point in the history
According to the contribution docs
[here](https://mlem.ai/doc/contributing/core/) this should work:

```shell
python -m tests
```

This PR will fix it.
  • Loading branch information
aminalaee authored Apr 21, 2023
1 parent 3013d8b commit 21a83fc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import sys

import pytest

if __name__ == "__main__":
sys.exit(pytest.main(["-v", *sys.argv[1:]]))

0 comments on commit 21a83fc

Please sign in to comment.