Remove import aliases in test_examples.py, use sync_ prefixed names d… #1455
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: E2E test ↔️ | |
| on: | |
| push: | |
| repository_dispatch: | |
| schedule: | |
| - cron: 0 12 * * * | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install setup dependencies | |
| run: pip install setuptools_scm wheel | |
| - name: Build distribution | |
| run: make install | |
| - uses: nanasess/setup-chromedriver@v2 | |
| - name: Run integration tests | |
| run: make test_e2e | |
| env: | |
| KEY: ${{ secrets.anticaptcha_key }} | |
| PROXY_URL: "${{ secrets.proxy_url }}" |