You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by pa...@apache.org on 2023/06/16 12:20:37 UTC

[arrow-nanoarrow] branch main updated: chore(python): Avoid reinstalling for testing docstrings (#235)

This is an automated email from the ASF dual-hosted git repository.

paleolimbot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 86da0c6  chore(python): Avoid reinstalling for testing docstrings (#235)
86da0c6 is described below

commit 86da0c6a3d0115203b781ed4e93e190dc79212ab
Author: Joris Van den Bossche <jo...@gmail.com>
AuthorDate: Fri Jun 16 14:20:32 2023 +0200

    chore(python): Avoid reinstalling for testing docstrings (#235)
    
    Small follow-up on
    https://github.com/apache/arrow-nanoarrow/pull/117/files#r1231696846
---
 .github/workflows/python.yaml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml
index 156b499..2f21379 100644
--- a/.github/workflows/python.yaml
+++ b/.github/workflows/python.yaml
@@ -61,10 +61,8 @@ jobs:
       - name: Run doctests
         if: success() && matrix.python-version == '3.10'
         run: |
-          # Needs editable install to run --doctest-cython
           pip install pytest-cython
-          pip install -e python
-          pytest python --doctest-cython
+          pytest --pyargs nanoarrow --doctest-cython
 
       - name: Coverage
         if: success() && matrix.python-version == '3.10'