-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use cast instead of type: ignore * add updateinfo migration * rework tests to use fixtures and cli option * adjust core tests * adjust data layer tests * adjust benchmark tests * remove create_filter_test_data * remove old code/comments * create deployment instead of trying to build docker img * adjust pytest wf * add medium test data * split check_dsn and make_engine * use medium test data where it makes sense * make postgres_dsn its own cli option * run one backend per test run * fix typo * remove copy disclaimer * backends -> backend * add type:ignore * change url to localhost * fix conflict resolution mixstakes * fix more conf. res. mistakes * try to start psotgres only when it is needed * fix gha syntax * group tests into groups of two * group default matrix as well * all platforms at once seems to be most efficient * make iamc tests a little bit faster * use explicit core import * remove run.set_as_default() * remove more set_as_default * remove runs.set_as_default_version from opt data layer tests * remove extra comment * missed a correct conflict res. * fix broken psql tests * remove extra comment * fix typo * simplify conftest.py * forgot sqlite_platform * more performance refactoring * reset is now called in conftest.py * reset after the test instead of before? * rev reset after * split up reset() * split reset for all fixtures * refactor reset() * more reset refactoring * avoid duplicate setup/td * try class scope for big td * switch close and td * NullPool is the answer for test runs * more efficient run filter test * touchups and docstrings * we can only use class scope for immutable pltf. fixtures * Update tests/data/test_optimization_indexset.py Co-authored-by: Fridolin Glatter <[email protected]> * Update tests/data/test_optimization_indexset.py Co-authored-by: Fridolin Glatter <[email protected]> * Update tests/data/test_optimization_indexset.py Co-authored-by: Fridolin Glatter <[email protected]> * Update tests/data/test_optimization_indexset.py Co-authored-by: Fridolin Glatter <[email protected]> * Update tests/data/test_optimization_indexset.py Co-authored-by: Fridolin Glatter <[email protected]> * Update tests/data/test_optimization_indexset.py Co-authored-by: Fridolin Glatter <[email protected]> * Update tests/data/test_optimization_table.py Co-authored-by: Fridolin Glatter <[email protected]> * Update tests/data/test_optimization_table.py Co-authored-by: Fridolin Glatter <[email protected]> * Update tests/data/test_optimization_table.py Co-authored-by: Fridolin Glatter <[email protected]> --------- Co-authored-by: Fridolin Glatter <[email protected]>
- Loading branch information
1 parent
f57d533
commit 227fbcb
Showing
69 changed files
with
82,506 additions
and
2,503 deletions.
There are no files selected for viewing
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,27 @@ | ||
name: deploy | ||
|
||
on: | ||
push: | ||
tags: ["v*"] | ||
release: | ||
types: ["published"] | ||
|
||
jobs: | ||
create_deployment: | ||
timeout-minutes: 15 | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
steps: | ||
- if: github.event_name == 'release' | ||
uses: chrnorm/deployment-action@v2 | ||
name: Create Testing Deployment | ||
with: | ||
token: ${{ github.token }} | ||
environment: testing | ||
- if: github.event_name != 'release' | ||
uses: chrnorm/deployment-action@v2 | ||
name: Create Development Deployment | ||
with: | ||
token: ${{ github.token }} | ||
environment: development |
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,11 @@ | ||
{ | ||
"action": "released", | ||
"ref": "refs/tags/v0.0.0", | ||
"release": { | ||
"name": "v0.0.0" | ||
}, | ||
"github": { | ||
"event_name": "release" | ||
} | ||
|
||
} |
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
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
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.