| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/software/Services/smpp/python-smpplib-master/python-smpplib-master/.circleci/ |
Upload File : |
version: 2
workflows:
version: 2
test:
jobs:
- test-3.10
- test-3.9
- test-3.8
- test-3.7
- test-3.6
- test-3.5
- test-3.4
- test-2.7
- test-pypy3
- test-pypy2
jobs:
test-3.10: &test-template
docker:
- image: python:3.10 # We run one test in non-alpine environment, just in case
working_directory: ~/work
steps:
- checkout
- run:
name: Install dependencies
command: |
python -m venv venv || pypy -m venv venv || {
pip install virtualenv && virtualenv ./venv ||
virtualenv -p "$(command -v python || command -v pypy)" ./venv;
}
- run:
name: Install project
command: |
. venv/bin/activate
pip install -e .[tests]
- run:
name: Run tests
command: |
. venv/bin/activate
pytest -v
test-3.9:
<<: *test-template
docker:
- image: python:3.9-alpine
test-3.8:
<<: *test-template
docker:
- image: python:3.8-alpine
test-3.7:
<<: *test-template
docker:
- image: python:3.7-alpine
test-3.6:
<<: *test-template
docker:
- image: python:3.6-alpine
test-3.5:
<<: *test-template
docker:
- image: python:3.5-alpine
test-3.4:
<<: *test-template
docker:
- image: python:3.4-alpine
test-2.7:
<<: *test-template
docker:
- image: python:2.7-alpine
test-pypy3:
<<: *test-template
docker:
- image: pypy:3-slim
test-pypy2:
<<: *test-template
docker:
- image: pypy:2-slim