From c750571c1a14ef125104bd68b1aa53fec7ea9703 Mon Sep 17 00:00:00 2001 From: zacharyburnett Date: Mon, 15 Jul 2024 15:49:34 -0400 Subject: [PATCH] run pyargs tests with pytest --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b404d361d..95ccaf536 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,6 +11,7 @@ jobs: uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 with: upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} - test_command: python -c "from asdf import open, AsdfFile, info, config_context, get_config, ValidationError, IntegerType, Stream, ExternalArrayReference" + test_extras: tests + test_command: python -c "from asdf import open, AsdfFile, info, config_context, get_config, ValidationError, IntegerType, Stream, ExternalArrayReference"; pytest --pyargs asdf secrets: pypi_token: ${{ secrets.PYPI_PASSWORD_ASDF_MAINTAINER }}