Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update run options documentation #18

Merged
merged 2 commits into from
Jan 9, 2024
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ If using docker-compose to run the library, this step is handled for you.
# Create an instance of TAPValidator
tap_validator = TAPValidator(config)

# Run the desired action (COMPARISON, VALIDATION, TABLE_VALIDATION_ONLY)
# Run the desired action (COMPARISON, VALIDATION, TABLE_VALIDATION)
asyncio.run(tap_validator.run(mode="COMPARISON", fullscan=False))


Expand Down
4 changes: 3 additions & 1 deletion src/tapvalidator/tap_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
validates various aspects of a TAP Service, or if TABLE_VALIDATION_ONLY is the run
mode, only the Tables of a TAP Service are validated.

TABLE_VALIDATION_ONLY can be used for healthchecking a TAP Service and
TABLE_VALIDATION can be used for healthchecking a TAP Service and
its underlying SQL Database
VALIDATION does a test of various parts of the TAP Service
COMPARISON compares two TAP Services with a list of queries
"""
import asyncio
import click
Expand Down
Loading