k8s.io/test-infra@v0.0.0-20240520184403-27c6b4c223d8/experiment/README.md (about)

     1  # Experiment
     2  
     3  This is a catchall directory for small shard projects that are not supported
     4  and do not necessarily meet the standards of the rest of the repo. They are
     5  most often in the form of scripts, or tools intended for one-shot or limited
     6  use.
     7  
     8  If you feel like an experiment has outgrown this definition, please
     9  open a PR to move it into its own directory.
    10  
    11  If you feel like an experiment is now defunct and unused, please open a PR to
    12  remove it.
    13  
    14  ## Python Scripts
    15  
    16  Most of python scripts located in this directory can be ran straight by invoking
    17  the script in a terminal. For a deterministic outcome, try use make rules, for
    18  example to run `flakedetector.py`, do:
    19  
    20  ```
    21  make -C experiment ARGS=<EXTRA-ARGS> run-flakedetector
    22  ```