Skip to content

enable auditing wall for side effects #22

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

Draft
wants to merge 27 commits into
base: function-optimizer-refactor
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
de6b7aa
codeflash error handle when remote is empty
Saga4 Feb 19, 2025
fa9911d
check formatter during init
aseembits93 Feb 19, 2025
fe71b4f
Update cmd_init.py
aseembits93 Feb 19, 2025
f044c50
suggest installing via pip
aseembits93 Feb 19, 2025
895c447
Update cmd_init.py
aseembits93 Feb 19, 2025
3510312
add auditwall.py
KRRT7 Feb 19, 2025
3f524c2
first pass
KRRT7 Feb 19, 2025
484859d
Merge pull request #10 from codeflash-ai/function-optimizer-refactor
alvin-r Feb 20, 2025
474d385
Merge pull request #21 from codeflash-ai/cf-495-2
misrasaurabh1 Feb 20, 2025
c93a7ca
Merge pull request #20 from codeflash-ai/fix/issue_19
Saga4 Feb 20, 2025
0cab511
Use python >= 3.9 instead of ^3.9
PaleNeutron Feb 21, 2025
414ac44
second pass
KRRT7 Feb 22, 2025
9139c43
fix tests
KRRT7 Feb 22, 2025
a6da525
Don't display result if INIT_STATE_TEST
davidgirdwood1 Feb 24, 2025
488d4fa
Use the to_name()
davidgirdwood1 Feb 25, 2025
a304b25
Merge pull request #25 from codeflash-ai/dg_report_table
davidgirdwood1 Feb 25, 2025
4469fac
Use python >= 3.9 instead of ^3.9
misrasaurabh1 Feb 25, 2025
02cfca0
release/v0.10.0
misrasaurabh1 Feb 26, 2025
680d0da
Merge pull request #29 from codeflash-ai/release/v0.10.0
misrasaurabh1 Feb 26, 2025
cc1a0b9
fix tests failing
KRRT7 Feb 22, 2025
6839161
Update unit-tests.yaml
KRRT7 Feb 26, 2025
7c47781
add license notice.
KRRT7 Feb 26, 2025
56172db
Update _auditwall.py
KRRT7 Feb 28, 2025
617a888
Merge remote-tracking branch 'origin/main' into blocking-wall-FOR
KRRT7 Feb 28, 2025
c118a16
new way
KRRT7 Mar 17, 2025
48121e9
update
KRRT7 Mar 17, 2025
875dc69
Update test_runner.py
KRRT7 Mar 17, 2025
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
Prev Previous commit
Next Next commit
Update cmd_init.py
  • Loading branch information
aseembits93 authored Feb 19, 2025
commit fe71b4f4ed71a3effab8fb88b22b66f9cffdf67a
5 changes: 0 additions & 5 deletions codeflash/cli_cmds/cmd_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,13 +590,8 @@ def configure_pyproject_toml(setup_info: SetupInfo) -> None:
if formatter in ["black", "ruff"]:
try:
result = subprocess.run([formatter], capture_output=True, check=False)
click.echo(f"✅ Formatter exists on system")
click.echo()
except FileNotFoundError as e:
click.echo(f"⚠️ Formatter not found: {formatter}")
click.echo()
# Not throwing an exception, letting the program proceed even though the formatter was not found, putting it on the user to install it later
# raise e from None
codeflash_section["formatter-cmds"] = formatter_cmds
# Add the 'codeflash' section, ensuring 'tool' section exists
tool_section = pyproject_data.get("tool", tomlkit.table())
Expand Down
Loading