From 0080da4a8fe54a0f8f0eefe114d1d0a4f5c468df Mon Sep 17 00:00:00 2001 From: Avasam Date: Thu, 2 May 2024 23:30:11 -0400 Subject: [PATCH] Not installing pyright on CI --- tests/requirements.txt | 1 - tests/run_tests.sh | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/requirements.txt b/tests/requirements.txt index 966ae271..aff6a475 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,7 +1,6 @@ # Tools used for testing docopt mypy==1.7.0 -pyright # Typed libraries and stubs matplotlib>=3.8 diff --git a/tests/run_tests.sh b/tests/run_tests.sh index f97f5415..3544f3ac 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -2,6 +2,7 @@ test_folder=$(dirname "${BASH_SOURCE[0]}") root=$(dirname $test_folder) +python -m pip install --upgrade pyright python -m pip install --upgrade -r $test_folder/requirements.txt cd $root