Skip to content

Fix issue with InternalRequestsClient when edge context is None #1079

Fix issue with InternalRequestsClient when edge context is None

Fix issue with InternalRequestsClient when edge context is None #1079

Workflow file for this run

name: Lint and Test
on:
push:
branches: [ develop, v2.5 ]
pull_request:
branches: [ develop, v2.5 ]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
container:
image: python:${{ matrix.python-version }}
services:
cassandra:
image: "cassandra:3.11"
memcached:
image: "memcached:1.5.6"
redis:
image: "redis:4.0.9"
zookeeper:
image: "zookeeper:3.4.10"
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
env:
CASS_DRIVER_NO_EXTENSIONS: theytaketoolongtobuild
run: |
python --version
python -m pip install -r requirements.txt
- name: Lint
run: |
make lint
- name: Test
run: |
make test