Skip to content

Commit c59da31

Browse files
authored
Merge pull request #1 from Roche/add-client-and-tests
adding initial version of a sync FoxOps API client
2 parents 89095a8 + 20f7b0f commit c59da31

File tree

18 files changed

+2116
-0
lines changed

18 files changed

+2116
-0
lines changed

.flake8

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[flake8]
2+
max-line-length = 120
3+
select = B,C,E,F,W,B950
4+
extend-ignore = E203, E501, W503, B008

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.venv/
2+
**/.pytest_cache/
3+
**/.mypy_cache/

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.PHONY: clean-test-infrastructure
2+
clean-test-infrastructure:
3+
docker ps -aq --filter "label=creator=pytest-docker-tools" | xargs docker rm -f

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# foxops-client-python
2+
3+
This repository contains the Python client for the [foxops](https://github.com/roche/foxops) templating tool.

0 commit comments

Comments
 (0)