File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ test :
7+ runs-on : ubuntu-20.04
8+ steps :
9+ - uses : actions/checkout@v2
10+ - name : Set up Python
11+ uses : actions/setup-python@v2
12+ with :
13+ python-version : 3.7.3
14+ - name : Install dependencies
15+ run : |
16+ python -m pip install --upgrade pip
17+ pip install -r requirements-dev.txt
18+ - name : Run tests
19+ run : |
20+ pytest
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class Cookie:
3333
3434@dataclass
3535class NextStep :
36- """Return this from :meth:`.authenticate` or :meth:`.pass_login_credentials` to open client built-in browser with given url.
36+ R """Return this from :meth:`.authenticate` or :meth:`.pass_login_credentials` to open client built-in browser with given url.
3737 For example:
3838
3939 .. code-block:: python
You can’t perform that action at this time.
0 commit comments