From d6242ab241cd7eb66d29f0ad4eb828f403c9c85f Mon Sep 17 00:00:00 2001 From: shimwell Date: Sun, 5 Jan 2025 20:28:05 +0100 Subject: [PATCH] added import test --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 910daa46..8a5c1d30 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,10 +31,13 @@ jobs: python-version: ${{ matrix.python-version }} - name: install dependencies - run: python -m pip install .[tests] + run: | + python -m pip install . + python -c "import paramak" - name: Test with pytest run: | + python -m pip install .[tests] pytest -v python examples/plasma.py python examples/spherical_tokamak_from_plasma_minimal.py