Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed test environment (nox -s fides_env) to run fides deploy for local testing #3017

Merged
merged 37 commits into from
Apr 12, 2023
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
fe16f83
Replace the test environment with 'fides deploy up'
NevilleS Apr 7, 2023
45651e6
Working version of using 'fides deploy up for test environment
NevilleS Apr 8, 2023
db71ce3
Cleanup unused test_env files, update docs
NevilleS Apr 8, 2023
d7ac359
Remove 'fides deploy' from release checklist
NevilleS Apr 8, 2023
e7541f8
Formatting, linting, etc.
NevilleS Apr 8, 2023
397ce97
Tidy up some nox loose ends
NevilleS Apr 8, 2023
61d3e98
Change redis enabled to default to True
NevilleS Apr 9, 2023
078d1b8
Use explicit docker container name instead of "fides-fides-1"
NevilleS Apr 9, 2023
6727530
Formatting
NevilleS Apr 9, 2023
fb7a0d4
Update sample app privacy center with GPC defaults
NevilleS Apr 9, 2023
5f15481
Change 'fides deploy up --image' to override tag, too
NevilleS Apr 9, 2023
a930d3b
Remove user creation from test env setup scripts
NevilleS Apr 9, 2023
0e53b9d
Refactor check_required_webserver_config_values
NevilleS Apr 9, 2023
b57e237
Add 'fides user login' to deploy command
NevilleS Apr 9, 2023
7f6640a
Enable hot-reloading in 'fides deploy' with a custom command
NevilleS Apr 9, 2023
45c0249
Fix fides user login for deploy
NevilleS Apr 10, 2023
8658aba
Formatting
NevilleS Apr 10, 2023
3f8750b
Pylint
NevilleS Apr 10, 2023
52ebc4d
Update cli_checks.yml
NevilleS Apr 10, 2023
fb82820
Update LOGIN command to use fides container name
NevilleS Apr 10, 2023
9df820c
Update smoke test to expect only email
NevilleS Apr 10, 2023
b03340b
Add build-time report
NevilleS Apr 10, 2023
36e3af8
Add TODO for teardown
NevilleS Apr 10, 2023
d9ff8d8
Remove (failed) attempt at hot-reloading
NevilleS Apr 10, 2023
9e2d20a
Fix accidental leftover click.option
NevilleS Apr 10, 2023
8689730
fix: seed_example_data docker command
ThomasLaPiana Apr 11, 2023
12e60e6
Fix janky teardown code
NevilleS Apr 10, 2023
266aad0
fix: teardown doesn't teardown the test env
ThomasLaPiana Apr 11, 2023
e1052b8
Merge branch 'ns-new-test-env' of https://github.com/ethyca/fides int…
ThomasLaPiana Apr 11, 2023
8f5bd1e
refactor: slight code cleanup
ThomasLaPiana Apr 11, 2023
d9be6b6
refactor: add proper names to the sample app services
ThomasLaPiana Apr 11, 2023
8665f5f
feat: another slight tweak to the pip install step
ThomasLaPiana Apr 11, 2023
6de259a
Merge branch 'main' of github.com:ethyca/fides into ns-new-test-env
NevilleS Apr 11, 2023
e4e4d2c
fix: external test compose file invalid
ThomasLaPiana Apr 11, 2023
235c81f
Merge branch 'ns-new-test-env' of https://github.com/ethyca/fides int…
ThomasLaPiana Apr 11, 2023
10b24db
Update CHANGELOG.md
NevilleS Apr 12, 2023
8dcb946
Remove the 'fides deploy' CI check (redundant with cypress_e2e.yml wh…
NevilleS Apr 12, 2023
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
2 changes: 1 addition & 1 deletion noxfiles/dev_nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def fides_env(session: Session, fides_image: Literal["test", "dev"] = "test") ->

session.log("Installing ethyca-fides locally...")
install_requirements(session)
session.install("-e", ".")
session.install("-e", ".", "--no-deps")
ThomasLaPiana marked this conversation as resolved.
Show resolved Hide resolved
session.run("fides", "--version")
timestamps.append({"time": time.monotonic(), "label": "pip install"})

Expand Down