File: third_party.md

package info (click to toggle)
python-inline-snapshot 0.29.0-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 1,400 kB
  • sloc: python: 8,877; makefile: 37; sh: 30
file content (37 lines) | stat: -rw-r--r-- 1,548 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

Third-party extensions can be used to enhance the testing experience with other frameworks.
The goal of inline-snapshot is to provide the core functionality for many different use cases.

List of current third-party extensions:

<!--[[[cog
from lxml import html
import requests
import cog

response = requests.get("https://pypi.org/simple/")

tree = html.fromstring(response.content)

package_list = [str(package) for package in tree.xpath('//a/text()') if str(package).startswith("inline-snapshot-") or  str(package).endswith("-inline-snapshot")]



for package_name in sorted(package_list):

    r = requests.get(f'https://pypi.org/pypi/{package_name}/json', headers = {'Accept': 'application/json'});

    summary=r.json()['info']["summary"]
    cog.out(f"* [{package_name}](https://pypi.org/project/{package_name}/) {summary}\n")

]]]-->
* [inline-snapshot-django](https://pypi.org/project/inline-snapshot-django/) Extensions for using inline-snapshot to test Django projects.
* [inline-snapshot-pandas](https://pypi.org/project/inline-snapshot-pandas/) pandas integration for inline-snapshot (insider only)
<!--[[[end]]]-->


!!! info "How to add your extension to this list?"
    Your package name has to start with `inline-snapshot-` or end with `-inline-snapshot` and has to be available on [PyPI](https://pypi.org).
    The summary of your package will be used as description.

    I will update this list from time to time but you can accelerate this process by creating a new [issue](https://github.com/15r10nk/inline-snapshot/issues).