Metadata-Version: 2.1
Name: pytest-initry
Version: 0.1.1
Summary: Plugin for sending automation test data from Pytest to the initry
Home-page: https://github.com/initry/pytest-initry
License: MIT
Keywords: pytest,initry
Author: Andrejs Smirnovs
Author-email: and.inbx@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Framework :: Pytest
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: grpcio (>=1.62.1,<2.0.0)
Requires-Dist: protobuf (>=5.26.1,<6.0.0)
Requires-Dist: pytest (>=8.1.1,<9.0.0)
Project-URL: Repository, https://github.com/initry/pytest-initry
Description-Content-Type: text/markdown

# pytest-initry

Plugin for sending automation test data from Pytest to the [initry](https://github.com/initry/initry).

1. Install:
   ```
   pip install pytest-initry
   ```
2. Configure pytest.ini:
    ```ini
    [pytest]
    initry_host = localhost
    initry_grpc_port = 50051
    initry_batching = false
    ```
3. CLI can also be used, but it's not the preferred method. The arguments will be the same as those mentioned for the pytest.ini config file.
    ```bash
    pytest --initry-host=localhost --initry-batching=true
    ```

### License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

