diff --git a/README.md b/README.md
index 1b8d309..2f1479d 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,8 @@

+ [](https://app.codacy.com/gh/btcpay-monero/btcpayserver-monero-plugin/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
+ [](https://app.codacy.com/gh/btcpay-monero/btcpayserver-monero-plugin/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage)
[](https://matrix.to/#/#btcpay-monero:matrix.org)
@@ -38,7 +40,20 @@ To build and run unit tests, run the following commands:
dotnet build btcpay-monero-plugin.sln
dotnet test BTCPayServer.Plugins.Monero.UnitTests --verbosity normal
```
-This will build the plugin and run the unit tests.
+To run unit tests with coverage, run the following command:
+
+```bash
+dotnet test BTCPayServer.Plugins.Monero.UnitTests/BTCPayServer.Plugins.UnitTests.csproj /p:CollectCoverage=true /p:CoverletOutputFormat=json /p:CoverletOutput=../coverage/coverage.json
+```
+
+To build and run integration tests, run the following commands:
+
+```bash
+dotnet build btcpay-monero-plugin.sln
+docker compose -f BTCPayServer.Plugins.IntegrationTests/docker-compose.yml run tests
+```
+
+**BTCPAY_XMR_CASHCOW_WALLET_DAEMON_URI** | **Optional**. The URI of the [monero-wallet-rpc](https://getmonero.dev/interacting/monero-wallet-rpc.html) interface for the cashcow wallet. This is used to create a second wallet for testing purposes in regtest mode. | http://
If you are a developer maintaining this plugin, in order to maintain this plugin, you need to clone this repository with `--recurse-submodules`: