From 3189548fd92bd59f1f0aa7c6fd0f0020f48def98 Mon Sep 17 00:00:00 2001 From: Roman Date: Wed, 12 Feb 2025 15:15:38 +0800 Subject: [PATCH] test: test_data_integrity in workflow --- .github/workflows/test.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..0b7cf06 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,32 @@ +name: Test E2E Tests + +on: + push: + branches: + - test-data-availability-integrity + +jobs: + + tests: + name: tests + runs-on: ubuntu-latest + timeout-minutes: 120 + steps: + - name: Remove unwanted software + uses: ./.github/actions/prune-vm + + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v4 + with: + python-version: '3.12' + cache: 'pip' + + - run: | + pip install -r requirements.txt + mkdir -p kzgrs + wget https://raw.githubusercontent.com/logos-co/nomos-node/master/tests/kzgrs/kzgrs_test_params -O kzgrs/kzgrs_test_params + + - name: Run tests + run: | + pytest tests/data_integrity/test_data_integrity.py