-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SECURITY-9304: compatibility with the central test suite
Co-authored-by: Laszlo Hammerl <[email protected]> Co-authored-by: Laszlo Losonczy <[email protected]> Co-authored-by: Dora Kaszasne Sztanko <[email protected]>
- Loading branch information
1 parent
c909c8e
commit 5ac3507
Showing
189 changed files
with
385 additions
and
1,047 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "test-cases"] | ||
path = test-cases | ||
url = [email protected]:EscherAuth/test-cases.git |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM python:3.8.18-alpine3.19 | ||
|
||
RUN mkdir /escher | ||
WORKDIR /escher | ||
|
||
COPY setup.py /escher | ||
COPY requirements-dev.txt /escher | ||
|
||
RUN python -m pip install --upgrade pip && \ | ||
pip install build && \ | ||
pip install -r requirements-dev.txt |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
build: ; docker compose build | ||
lint: ; docker compose run --rm escher pycodestyle --ignore=E501 escherauth | ||
test: ; docker compose run --rm escher nose2 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: '3' | ||
services: | ||
escher: | ||
build: . | ||
volumes: | ||
- .:/escher |
Oops, something went wrong.