From 854b29ae566d2a02f106d273ad28a5bc0f19db32 Mon Sep 17 00:00:00 2001 From: Asherah Connor Date: Sun, 16 Jun 2024 13:11:28 +0300 Subject: [PATCH] setup-action: install pytest. --- setup-action/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup-action/action.yml b/setup-action/action.yml index 2432526..21586ef 100644 --- a/setup-action/action.yml +++ b/setup-action/action.yml @@ -19,6 +19,10 @@ runs: python-version: '3.12' cache: pip + - name: Install pytest + run: pip install pytest + shell: bash + - name: Install niar run: cd setup-niar-out/niar && pip install -e . shell: bash