languages: Do not expose unnecessary captures from tasks (#19625)
This tackles an issue with us exposing unnecessary env variables in environment which are not actually needed for tasks themselves (and may have little utility), yet come into the way of ssh remoting. /cc @ConradIrwin Release Notes: - N/A
This commit is contained in:
parent
69b12f4e33
commit
9dfe4a30bb
9 changed files with 16 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "zed_php"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
license = "Apache-2.0"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
id = "php"
|
||||
name = "PHP"
|
||||
description = "PHP support."
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
schema_version = 1
|
||||
authors = ["Piotr Osiewicz <piotr@zed.dev>"]
|
||||
repository = "https://github.com/zed-industries/zed"
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
(#match? @run "^test.*")
|
||||
)
|
||||
)
|
||||
) @phpunit-test
|
||||
) @_phpunit-test
|
||||
(#set! tag phpunit-test)
|
||||
)
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
|||
(#not-match? @run "^test.*")
|
||||
))
|
||||
)
|
||||
) @phpunit-test
|
||||
) @_phpunit-test
|
||||
(#set! tag phpunit-test)
|
||||
)
|
||||
|
||||
|
@ -69,7 +69,7 @@
|
|||
(#not-match? @run "^test.*")
|
||||
)
|
||||
)
|
||||
) @phpunit-test
|
||||
) @_phpunit-test
|
||||
(#set! tag phpunit-test)
|
||||
)
|
||||
|
||||
|
@ -81,7 +81,7 @@
|
|||
(#not-eq? @_modifier "abstract")
|
||||
name: (_) @run
|
||||
(#match? @run ".*Test$")
|
||||
) @phpunit-test
|
||||
) @_phpunit-test
|
||||
(#set! tag phpunit-test)
|
||||
)
|
||||
|
||||
|
@ -100,6 +100,6 @@
|
|||
]
|
||||
)
|
||||
)
|
||||
) @pest-test
|
||||
) @_pest-test
|
||||
(#set! tag pest-test)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue