venom icon indicating copy to clipboard operation
venom copied to clipboard

🐍 Manage and run your integration tests with efficiency - Venom run executors (script, HTTP Request, web, imap, etc... ) and assertions

Results 96 venom issues
Sort by recently updated
recently updated
newest added

Hello ! Lots of our tests are time based, which forces us to add a lot of "sleep tests". For example, here is on of our test case : ```...

Adding local json instead of trying to call an http server. Increasing coverage of assertions by adding tests in the `ShouldBeMap` , `ShouldBeArray` and fixing the issue with the `ShouldNotExist`

Is it possible to display the number of fail/pass results such as `PASS: 2, FAIL: 1` ?

This is done in order to avoid expanding and storing big payloads that we dont need and we dont use for assertions. The flag is called `VENOM_NO_JSON_EXPANSION`.

Currently we have the tests running using make and sprinning the individual images one and having the cleanup afterwards. My proposal is to use https://golang.testcontainers.org/quickstart/ and basically have unit tests...

check them if we have them in the cache and read them only once

Howdy, I'm going through upgrading our tests to latest venom, and noticed that `info` is now disregarded for user defined custom executors. Example with venom [1.1.0](https://github.com/ovh/venom/releases/tag/v1.1.0): ``` • exec PASS...

bug

Hello! While working with Venom, we encountered an issue related to the from field in test steps. Currently, it appears that the from field does not accept non-variable values, which...

Hello, I would like for kafka headers to be supported, both reading them when consuming or when producing messages. Sarama already supports it, cf https://github.com/shopify/sarama/blob/v1.20.1/async_producer.go#L177C12-L177C24 on the producer side for...

feature

Skip functionality is not reliable at the moment , created a small test scenario below just to validate my suspicions : ```yaml name: "Testing skip" vars: features: - ACCOUNT -...

bug