agardnerIT / tracepusher

Generate and push OpenTelemetry Trace data to an OTEL collector in JSON format
Apache License 2.0
53 stars 11 forks source link

Create requirements.txt for GitHub Actions w/o pytest #58

Closed agardnerIT closed 1 year ago

agardnerIT commented 1 year ago

Create a new requirements-dev.txt which contains 3 dependencies:

Why?

GitHub actions currently runs pip install -r requirements.txt which includes pytest.

GitHub actions build binaries workflow doesn't use pytest to this is inefficient and pointless.

By having two files, we can have one for the developers (who need pytest) and one for everyone else (who probably doesn't).

agardnerIT commented 1 year ago

Being done by @viktoriussuwandi (if you drop a comment here I'll assign this to you)

viktoriussuwandi commented 1 year ago

working on it

agardnerIT commented 1 year ago

All done in #59 . Thanks!!