From 03d35709125d12233ac05c677c5f91f18b36b815 Mon Sep 17 00:00:00 2001 From: jh-RLI Date: Thu, 17 Aug 2023 11:14:53 +0200 Subject: [PATCH] add text about executing test on multiple OS platforms #21 --- docs/development/continuous-integration/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/development/continuous-integration/index.md b/docs/development/continuous-integration/index.md index 734ec19..980a0f7 100644 --- a/docs/development/continuous-integration/index.md +++ b/docs/development/continuous-integration/index.md @@ -4,7 +4,7 @@ Continuous integration is a crucial practice in software development that involv ## Setup -### Configure Tox Automation +### Configure Tox test-automation To streamline our test environment setup, we use `tox`, a powerful tool that automates testing across different environments. Begin by installing `tox`: @@ -20,6 +20,9 @@ Configuring `tox` may involve some complexity. Start by defining what tests you !!! Warning "Missing" Refer to our comprehensive guide on configuring `tox` for detailed instructions. +!!! Info "Run test on multiple platforms" + Our Tox environments are executed on all major platofrms including windows, linux and macos. + ### Configure Continuous Integration using GitHub Actions Our continuous integration (CI) process executes a series of tests, including running pytest and performing linting and code quality checks.