-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #346 from JaxGaussianProcesses/main
Merge in main
- Loading branch information
Showing
110 changed files
with
3,840 additions
and
1,326 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Integration Tests | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
integration-tests: | ||
name: Run Integration Tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
# Select the Python versions to test against | ||
os: ["ubuntu-latest", "macos-latest"] | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
fail-fast: true | ||
steps: | ||
- name: Check out the code | ||
uses: actions/checkout@v3.5.2 | ||
with: | ||
fetch-depth: 1 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
# Install Poetry | ||
- name: Install Poetry | ||
uses: snok/install-poetry@v1.3.3 | ||
with: | ||
version: 1.4.0 | ||
|
||
# Configure Poetry to use the virtual environment in the project | ||
- name: Setup Poetry | ||
run: | | ||
poetry config virtualenvs.in-project true | ||
# Install the dependencies | ||
- name: Install Package | ||
run: | | ||
poetry install --all-extras --with docs | ||
# Run the unit tests and build the coverage report | ||
- name: Run Integration Tests | ||
run: poetry run python tests/integration_tests.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
- main | ||
|
||
jobs: | ||
test: | ||
unit-tests: | ||
name: Run Tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -150,3 +150,5 @@ scratch_nbs/ | |
package.json | ||
package-lock.json | ||
node_modules/ | ||
|
||
docs/api |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.