# FrostFS S3 Tests parser This is handy util to form compatibility s3 tests results. ## Getting started Build app using ```shell $ make ``` Run app ```shell $ ./bin/s3-tests-parser compatibility tests/fixture/suite.csv ``` You can also use json ```shell $ ./bin/s3-tests-parser compatibility tests/fixture/suite.json --format json --output-format md --output result.md ``` ## Tests to check You can see all tests that will be checked during `compatibility` command by using: ```shell $ ./bin/s3-tests-parser tests --output tests.txt ``` Output file now contains tests and can be provided as parameter for running [s3-tests](https://git.frostfs.info/TrueCloudLab/s3-tests): ```shell S3TEST_CONF=your.conf tox -- @tests.txt ``` ## License and copyright Copyright 2023-2025 FrostFS contributors ``` This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License, version 3, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ```