-
Notifications
You must be signed in to change notification settings - Fork 32
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 #223 from memgraph/develop
[main < develop] Release GQLAlchemy 1.4
- Loading branch information
Showing
47 changed files
with
5,302 additions
and
1,506 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 |
---|---|---|
|
@@ -31,6 +31,7 @@ jobs: | |
run: | | ||
python -m pip install -U pip | ||
sudo -H pip install networkx numpy scipy | ||
sudo -H pip install poethepoet==0.18.1 | ||
- name: Setup poetry | ||
uses: abatilo/[email protected] | ||
with: | ||
|
@@ -49,6 +50,7 @@ jobs: | |
- name: Test project | ||
run: | | ||
poetry install | ||
poe install-pyg-cpu | ||
poetry run pytest -vvv -m "not slow and not ubuntu and not docker" | ||
- name: Use the Upload Artifact GitHub Action | ||
uses: actions/upload-artifact@v3 | ||
|
@@ -75,6 +77,7 @@ jobs: | |
run: | | ||
python -m pip install -U pip | ||
python -m pip install networkx numpy scipy | ||
python -m pip install poethepoet==0.18.1 | ||
- uses: Vampire/setup-wsl@v1 | ||
with: | ||
distribution: Ubuntu-20.04 | ||
|
@@ -112,6 +115,7 @@ jobs: | |
- name: Test project | ||
run: | | ||
poetry install | ||
poe install-pyg-cpu | ||
poetry run pytest -vvv -m "not slow and not ubuntu and not docker" | ||
- name: Save Memgraph Logs | ||
uses: actions/upload-artifact@v3 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import os | ||
|
||
MG_HOST = os.getenv("MG_HOST", "127.0.0.1") | ||
MG_PORT = int(os.getenv("MG_PORT", "7687")) | ||
MG_USERNAME = os.getenv("MG_USERNAME", "") | ||
MG_PASSWORD = os.getenv("MG_PASSWORD", "") | ||
MG_ENCRYPTED = os.getenv("MG_ENCRYPT", "false").lower() == "true" | ||
MG_CLIENT_NAME = os.getenv("MG_CLIENT_NAME", "GQLAlchemy") | ||
MG_LAZY = os.getenv("MG_LAZY", "false").lower() == "true" |
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.