This repository contains resources of tests and benchmarks for the RSVIM editor.
There are some python scripts and text files for testing/benchmarking the editor.
Requirements:
- Bash compatible shells and core utils:
bash
,curl
,wget
,tar
. - Python 3.9+, please setup the environment with:
- Create venv:
python3 -m venv ./venv
- Activate venv:
source ./venv/bin/activate
- Install dependencies:
python3 -m pip install -r requirements..txt
- Create venv:
-
To setup the tests and benches, please first clone rsvim:
git clone https://github.com/rsvim/rsvim
-
Then
cd
into thersvim
project, then clone this tests_and_benchmarks:cd ./rsvim git clone --depth=1 https://github.com/rsvim/tests_and_benchmarks
-
Or you could clone this project under the same directory with
rsvim
, and create a symlink for it:# Don't have to `cd ./rsvim` git clone --depth=1 https://github.com/rsvim/tests_and_benchmarks # Create symlink ln -s $PWD/tests_and_benchmarks $PWD/rsvim/tests_and_benchmarks