Skip to content

Commit

Permalink
workflow config bugfix
Browse files Browse the repository at this point in the history
- password must be at least 8 characters
- environment variable rename, was deprecated
lbellmann committed Apr 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 7403d1f commit ffa5409
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Trigger unit tests
run: pytest test --run_neo4j_tests=True --neo4j_host=localhost --neo4j_port=7687 --neo4j_user=neo4j --neo4j_pwd=pwd --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
run: pytest test --run_neo4j_tests=True --neo4j_host=localhost --neo4j_port=7687 --neo4j_user=neo4j --neo4j_pwd=mycoolpwd --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
- name: Upload pytest test results
uses: actions/upload-artifact@v4
with:
@@ -45,9 +45,9 @@ jobs:
env:
NEO4J_dbms_security_procedures_unrestricted: apoc.*
NEO4J_ACCEPT_LICENSE_AGREEMENT: "yes"
NEO4J_AUTH: "neo4j/pwd"
NEO4J_AUTH: "neo4j/mycoolpwd"
NEO4J_dbms_connector_bolt_advertised__address: localhost:7687
NEO4JLABS_PLUGINS: '["apoc"]'
NEO4J_PLUGINS: '["apoc"]'
options: >-
--health-cmd "cypher-shell 'match (n) return count(n)'"
--health-timeout 10s

0 comments on commit ffa5409

Please sign in to comment.