mirror of
https://github.com/microsoft/autogen.git
synced 2026-01-21 06:08:07 -05:00
Fix PULL_REQUEST_TEMPLATE and improve test by removing unnecessary environment variable (#1043)
* Improve test by removing unnecessary environment variable * Fix PULL_REQUEST_TEMPLATE * Hide pre-commit check * remove the checkbox for pre-commit Co-authored-by: Chi Wang <wang.chi@microsoft.com> --------- Co-authored-by: Chi Wang <wang.chi@microsoft.com>
This commit is contained in:
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
2
.github/PULL_REQUEST_TEMPLATE.md
vendored
@@ -12,7 +12,7 @@
|
||||
|
||||
## Checks
|
||||
|
||||
- I've used [pre-commit](https://microsoft.github.io/FLAML/docs/Contribute#pre-commit) to lint the changes in this PR (note the same in integrated in our CI checks).
|
||||
<!-- - I've used [pre-commit](https://microsoft.github.io/FLAML/docs/Contribute#pre-commit) to lint the changes in this PR (note the same in integrated in our CI checks). -->
|
||||
- [ ] I've included any doc changes needed for https://microsoft.github.io/FLAML/. See https://microsoft.github.io/FLAML/docs/Contribute#documentation to build and test documentation locally.
|
||||
- [ ] I've added tests (if relevant) corresponding to the changes introduced in this PR.
|
||||
- [ ] I've made sure all auto checks have passed.
|
||||
|
||||
@@ -219,6 +219,7 @@ def test_n_current_trials():
|
||||
assert get_n_current_trials(2) == min(2, tmp_max)
|
||||
assert get_n_current_trials(50) == min(50, tmp_max)
|
||||
assert get_n_current_trials(200) == min(200, tmp_max)
|
||||
del os.environ["FLAML_MAX_CONCURRENT"]
|
||||
|
||||
|
||||
def test_iloc_pandas_on_spark():
|
||||
|
||||
Reference in New Issue
Block a user