diff --git a/.github/action/entrypoint.sh b/.github/action/entrypoint.sh index 6f03702..45aff67 100755 --- a/.github/action/entrypoint.sh +++ b/.github/action/entrypoint.sh @@ -1,6 +1,6 @@ #!/bin/sh -l cd /github/workspace -KEPLER_JAX_CUDA=yes python3 -m pip install . +KEPLER_JAX_CUDA=yes python3 -m pip install -v . python3 -c 'import kepler_jax;print(kepler_jax.__version__)' python3 -c 'import kepler_jax.gpu_ops' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 266a102..5a1d3e3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,7 @@ jobs: - name: Install dependencies run: | python -m pip install -U pip - python -m pip install .[test] + python -m pip install -v .[test] - name: Run tests run: python -m pytest -v tests