Skip to content

Commit ade7537

Browse files
authored
Feature control segmentation (#59)
- Adding new feature: - scopes can now be used
2 parents f33cd50 + e5b5a48 commit ade7537

16 files changed

+33728
-20929
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: "!startsWith(github.event.head_commit.message, 'chore') && !startsWith(github.ref, 'refs/tags/v')"
1212
strategy:
1313
matrix:
14-
python-version: [3.9, "3.10", 3.11]
14+
python-version: ["3.13"]
1515
steps:
1616
- uses: actions/checkout@v1
1717

@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
max-parallel: 1
3434
matrix:
35-
python-version: ["3.9", "3.10", "3.11"]
35+
python-version: ["3.13"]
3636
steps:
3737
- name: setup extensions
3838
uses: actions/checkout@v1

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ install_project:
1919
test: test-unit test-int
2020

2121
test-unit:
22-
python -m pytest tests/unit
22+
python -m pytest test/unit
2323

2424
test-int:
25-
python -m pytest tests/integration
25+
python -m pytest test/integration
2626

2727
lint:
2828
./pylint.sh

build/testScript.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22
set -euo pipefail
33
echo "${SCC_ENV}" | base64 -d >> security_and_compliance_center_api_v3.env
4-
python -m pytest tests/integration
4+
python -m pytest test/integration

0 commit comments

Comments
 (0)