Skip to content

Commit 90ec05f

Browse files
author
Orie Steele
committed
turn off graph tests in ci
1 parent 388b766 commit 90ec05f

File tree

2 files changed

+35
-26
lines changed

2 files changed

+35
-26
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -147,31 +147,31 @@ jobs:
147147
./tests/fixtures/message.json.gcp.cbor \
148148
3073d614f853aaec9a1146872c7bab75495ee678c8864ed3562f8787555c1e22
149149
150-
graph:
151-
runs-on: ubuntu-latest
152-
steps:
153-
- uses: actions/checkout@v4
154-
- name: Push Graph Fragment
155-
id: push_single_graph
156-
uses: ./
157-
with:
158-
neo4j-uri: ${{ secrets.NEO4J_URI }}
159-
neo4j-user: ${{ secrets.NEO4J_USERNAME }}
160-
neo4j-password: ${{ secrets.NEO4J_PASSWORD }}
161-
transmute: |
162-
graph assist ./tests/fixtures/issuer-claims.json --verbose --credential-type application/vc --graph-type application/gql --push
163-
- name: Push Presentations
164-
id: push_multiple_graphs
165-
uses: ./
166-
with:
167-
neo4j-uri: ${{ secrets.NEO4J_URI }}
168-
neo4j-user: ${{ secrets.NEO4J_USERNAME }}
169-
neo4j-password: ${{ secrets.NEO4J_PASSWORD }}
170-
transmute-client-id: ${{ secrets.CLIENT_ID }}
171-
transmute-client-secret: ${{ secrets.CLIENT_SECRET }}
172-
transmute-api: ${{ secrets.API_BASE_URL }}
173-
transmute: |
174-
graph assist --graph-type application/gql --push
150+
# graph:
151+
# runs-on: ubuntu-latest
152+
# steps:
153+
# - uses: actions/checkout@v4
154+
# - name: Push Graph Fragment
155+
# id: push_single_graph
156+
# uses: ./
157+
# with:
158+
# neo4j-uri: ${{ secrets.NEO4J_URI }}
159+
# neo4j-user: ${{ secrets.NEO4J_USERNAME }}
160+
# neo4j-password: ${{ secrets.NEO4J_PASSWORD }}
161+
# transmute: |
162+
# graph assist ./tests/fixtures/issuer-claims.json --verbose --credential-type application/vc --graph-type application/gql --push
163+
# - name: Push Presentations
164+
# id: push_multiple_graphs
165+
# uses: ./
166+
# with:
167+
# neo4j-uri: ${{ secrets.NEO4J_URI }}
168+
# neo4j-user: ${{ secrets.NEO4J_USERNAME }}
169+
# neo4j-password: ${{ secrets.NEO4J_PASSWORD }}
170+
# transmute-client-id: ${{ secrets.CLIENT_ID }}
171+
# transmute-client-secret: ${{ secrets.CLIENT_SECRET }}
172+
# transmute-api: ${{ secrets.API_BASE_URL }}
173+
# transmute: |
174+
# graph assist --graph-type application/gql --push
175175

176176
jose:
177177
runs-on: ubuntu-latest

tests/jsonld2cypher.test.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,13 @@ it.skip('graph assist with transmute platform presentations', async () => {
3737
})
3838

3939

40-
40+
it.skip('graph assist with verifiable credential', async () => {
41+
await facade(`graph assist ./tests/fixtures/issuer-claims.json \
42+
--content-type application/vc \
43+
--graph-type application/gql \
44+
--env ./.env \
45+
--verbose --push `)
46+
expect(debug).toHaveBeenCalledTimes(1)
47+
expect(output).toHaveBeenCalledTimes(1)
48+
expect(secret).toHaveBeenCalledTimes(1)
49+
})

0 commit comments

Comments
 (0)