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:
Li Jiang
2023-05-20 04:05:14 +08:00
committed by GitHub
parent 683f6befd2
commit 7de4eb347d
2 changed files with 2 additions and 1 deletions

View File

@@ -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.

View File

@@ -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():