Skip to content

Commit

Permalink
Merge pull request #28 from willtebbutt/wct/is-fixed
Browse files Browse the repository at this point in the history
using is_fixed
  • Loading branch information
oxinabox committed Aug 11, 2021
2 parents e1af8ff + 2bda625 commit 7a329a2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "TestEnv"
uuid = "1e6cf692-eddd-4d53-88a5-2d735e33781b"
version = "1.4.1"
version = "1.4.2"

[deps]
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Expand Down
4 changes: 2 additions & 2 deletions src/TestEnv.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ using Pkg.Types: Types, projectfile_path, manifestfile_path
using Pkg.Operations: manifest_info, manifest_resolve!, project_deps_resolve!
using Pkg.Operations: project_rel_path, project_resolve!
using Pkg.Operations: sandbox, source_path, sandbox_preserve, abspath!
using Pkg.Operations: gen_target_project, update_package_test!
using Pkg.Operations: gen_target_project, update_package_test!, isfixed

include("common.jl")
include("activate_do.jl")
include("activate_set.jl")

end
end
3 changes: 3 additions & 0 deletions test/activate_set.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,7 @@
Pkg.activate(orig_project_toml_path)
end
end

# https://github.com/JuliaTesting/TestEnv.jl/issues/26
@test isdefined(TestEnv, :isfixed)
end

2 comments on commit 7a329a2

@oxinabox
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/42655

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.4.2 -m "<description of version>" 7a329a2d1df9a84e43cca605a4f2fe6c6e83273a
git push origin v1.4.2

Please sign in to comment.