Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,22 @@ Main interviews of import:
* any_filing_interview.yml: allows you to make any type of filing, initial or subsequent
* admin_interview.yml: lets you handle admin / user functionality, outside of the context of cases and filings

In progress!
## Config

Different parts of this package expect the below to be present in Docassemble's
config.

```yaml
efile proxy:
# The URL where the Efile Proxy Server is running
url: https:...
# The Proxy Server's API Key (should be provided to you by the sever admins)
api key: ...
# If you're given an EFSP global fee waiver ID for your jurisdiction, put it here
global waivers:
illinois: ...
massachusetts: ...
```

## Authors

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ code: |
tyler_login
lead_contact = users[0]
main_document.completed
tyler_payment_id = get_config('efile proxy', {}).get('global waiver', '')
tyler_payment_id = get_config('efile proxy', {}).get('global waivers', [''])[0]
ready_to_efile
efile
ending_screen
Expand Down
2 changes: 2 additions & 0 deletions docassemble/EFSPIntegration/test/test_conversions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# do not pre-load

import json
import unittest
from unittest.mock import MagicMock
Expand Down
2 changes: 2 additions & 0 deletions docassemble/EFSPIntegration/test/test_interview_functions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# do not pre-load

import unittest
from ..interview_logic import (
make_filters,
Expand Down
2 changes: 1 addition & 1 deletion docassemble/EFSPIntegration/test/test_proxy_conn.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python3
# do not pre-load

"""
Env vars needed to run:
Expand Down