Skip to content

Commit 69bb107

Browse files
authored
Merge pull request #3 from dominusmi/r&d
R&d
2 parents a0a83fd + b52e58e commit 69bb107

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+10623
-847
lines changed

.github/workflows/workflow.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Run tests
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- 'r&d'
8+
pull_request:
9+
branches:
10+
- 'master'
11+
workflow_dispatch:
12+
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v2
20+
21+
- name: Start neo4j
22+
run: docker compose up -d
23+
24+
- name: Set up Python
25+
uses: actions/setup-python@v2
26+
with:
27+
python-version: 3.9
28+
29+
- name: Install dependencies
30+
run: |
31+
pip install .
32+
pip install pytest
33+
34+
- name: Test
35+
working-directory: tests
36+
env:
37+
NEO4J_HOST: localhost
38+
run: python -m pytest

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,6 @@ docs/_build/
5151
# Test log
5252
/testlog.log
5353
/venv_cpython/
54+
/scripts/merge-entities/target/
55+
56+
Cargo.lock

README.md

Lines changed: 209 additions & 123 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)