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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
2 changes: 1 addition & 1 deletion packages/polywrap-client/scripts/extract_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
2 changes: 1 addition & 1 deletion packages/polywrap-core/scripts/extract_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
2 changes: 1 addition & 1 deletion packages/polywrap-manifest/scripts/extract_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
2 changes: 1 addition & 1 deletion packages/polywrap-msgpack/scripts/extract_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
2 changes: 1 addition & 1 deletion packages/polywrap-plugin/scripts/extract_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
2 changes: 1 addition & 1 deletion packages/polywrap-test-cases/scripts/extract_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
2 changes: 1 addition & 1 deletion packages/polywrap-uri-resolvers/scripts/extract_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
2 changes: 1 addition & 1 deletion packages/polywrap-wasm/scripts/extract_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
2 changes: 1 addition & 1 deletion packages/polywrap/scripts/extract_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run_tests():

if __name__ == "__main__":
# Make sure that the doctests are passing before we extract the README.
# run_tests()
run_tests()

# Extract the README.
readme = extract_readme()
Expand Down
3 changes: 0 additions & 3 deletions scripts/publish_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ def patch_version(version: str):
pyproject = tomlkit.load(f)
pyproject["tool"]["poetry"]["version"] = version

# Remove extra dev/test dependencies
pyproject["tool"]["poetry"].pop("group")

for dep in list(pyproject["tool"]["poetry"]["dependencies"].keys()):
if dep.startswith("polywrap-"):
pyproject["tool"]["poetry"]["dependencies"].pop(dep)
Expand Down