From 703b8966373c83bf85a5c17e5a3a90b4d1de2e13 Mon Sep 17 00:00:00 2001 From: Matthew Newville Date: Mon, 20 May 2024 14:19:54 -0500 Subject: [PATCH] add install of numpy_financial to CI tests --- .github/workflows/ubuntu_numpy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ubuntu_numpy.yml b/.github/workflows/ubuntu_numpy.yml index fc20122..08e156e 100644 --- a/.github/workflows/ubuntu_numpy.yml +++ b/.github/workflows/ubuntu_numpy.yml @@ -14,6 +14,7 @@ jobs: fail-fast: false matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -26,6 +27,7 @@ jobs: python -m pip install --upgrade pip python -m pip install setuptools codecov pytest pytest-cov coverage numpy numpy_financial - name: Install this package + run: | python -m pip install . - name: Test with pytest run: |