Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2.1

orbs:
python: circleci/python@1.5.0

jobs:
run-tox-testing:
docker:
- image: cimg/python:3.8
resource_class: small
steps:
- checkout
- run:
name: install tox
command: pip install tox
- run:
name: run tox
command: tox
- store_artifacts:
path: ./log
destination: logs-file

workflows:
test-and-build:
jobs:
- run-tox-testing
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Apstra (AOS) RestAPI Python Library
[![CircleCI](https://circleci.com/gh/Apstra/apstra-api-python/tree/main.svg?style=svg)](https://circleci.com/gh/Apstra/apstra-api-python/tree/main)

Educational Python library with the goal to teach users how to
programmatically interact with apstra and integrate the Apstra
Expand Down