From d3bce0fe214bea4ff7a8ac06d274c506afb2c397 Mon Sep 17 00:00:00 2001 From: Hanno Rein Date: Fri, 12 Jan 2024 17:38:07 -0500 Subject: [PATCH] new --- .github/workflows/reboundx.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/reboundx.yml b/.github/workflows/reboundx.yml index ae81d9dd5..ec225f9f0 100644 --- a/.github/workflows/reboundx.yml +++ b/.github/workflows/reboundx.yml @@ -17,6 +17,10 @@ jobs: - uses: actions/checkout@v4 with: path: rebound + - uses: actions/checkout@v4 + with: + repository: dtamayp/reboundx + path: reboundx - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -25,14 +29,13 @@ jobs: run: | python -m pip install --upgrade pip pip install pytest - pip install -r requirements.txt - pip install multiprocess + pip install -r rebound/requirements.txt + pip install -r reboundx/requirements.txt - name: Build REBOUND package run: pip install ./rebound - name: Build REBOUNDx package - run: | - git clone https://github.com/dtamayo/reboundx . - pip install --no-build-isolation -e . -v + run: pip install ./reboundx --no-build-isolation -e . -v - name: Run REBOUNDx unit tests run: | + cd reboundx python -m unittest discover -s reboundx/test/ -v