Skip to content
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

Add dev container support for development #1096

Merged
merged 1 commit into from
Mar 15, 2025

Conversation

atifaziz
Copy link
Member

This pull request introduces a dev container setup to ensure a consistent development environment for the project. The main changes include adding a devcontainer.json configuration file and updating the documentation to guide developers on using the dev container with Visual Studio Code or GitHub Codespaces.

@atifaziz
Copy link
Member Author

Verified by launching in Codespaces and running ./test.sh, which ran successfully with the following output:

  Determining projects to restore...
  All projects are up-to-date for restore.
Tool 'dotnet-t4' (version '3.0.0') was restored. Available commands: t4
Tool 'dotnet-reportgenerator-globaltool' (version '5.3.9') was restored. Available commands: reportgenerator
Tool 'meziantou.framework.nugetpackagevalidation.tool' (version '1.0.16') was restored. Available commands: meziantou.validate-nuget-package
Tool 'powershell' (version '7.4.5') was restored. Available commands: pwsh

Restore was successful.
Generating extensions wrappers (MoreLinq/Extensions.g.cs)...Done.
Generating extensions wrappers (MoreLinq/Extensions.ToDataTable.g.cs)...Done.
  Determining projects to restore...
  All projects are up-to-date for restore.

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:08.91
  MoreLinq -> /workspaces/MoreLINQ/MoreLinq/bin/Debug/netstandard2.0/MoreLinq.dll
  MoreLinq -> /workspaces/MoreLINQ/MoreLinq/bin/Debug/netstandard2.1/MoreLinq.dll
  MoreLinq.ExtensionsGenerator -> /workspaces/MoreLINQ/bld/ExtensionsGenerator/bin/Debug/MoreLinq.ExtensionsGenerator.dll
  MoreLinq -> /workspaces/MoreLINQ/MoreLinq/bin/Debug/net6.0/MoreLinq.dll
  MoreLinq -> /workspaces/MoreLINQ/MoreLinq/bin/Debug/net8.0/MoreLinq.dll
  MoreLinq -> /workspaces/MoreLINQ/MoreLinq/bin/Debug/net9.0/MoreLinq.dll
  MoreLinq.Test -> /workspaces/MoreLINQ/MoreLinq.Test/bin/Debug/net6.0/MoreLinq.Test.dll
  MoreLinq.Test.Aot -> /workspaces/MoreLINQ/MoreLinq.Test.Aot/bin/Debug/net9.0/MoreLinq.Test.Aot.dll
  MoreLinq.Test -> /workspaces/MoreLINQ/MoreLinq.Test/bin/Debug/net9.0/MoreLinq.Test.dll
  MoreLinq.Test -> /workspaces/MoreLINQ/MoreLinq.Test/bin/Debug/net471/MoreLinq.Test.exe
  MoreLinq.Test -> /workspaces/MoreLINQ/MoreLinq.Test/bin/Debug/net8.0/MoreLinq.Test.dll
  MoreLinq.Test.Aot -> /workspaces/MoreLINQ/MoreLinq.Test.Aot/bin/Debug/net8.0/MoreLinq.Test.Aot.dll

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:01:42.55
  MoreLinq -> /workspaces/MoreLINQ/MoreLinq/bin/Release/netstandard2.1/MoreLinq.dll
  MoreLinq -> /workspaces/MoreLINQ/MoreLinq/bin/Release/netstandard2.0/MoreLinq.dll
  MoreLinq -> /workspaces/MoreLINQ/MoreLinq/bin/Release/net6.0/MoreLinq.dll
  MoreLinq.ExtensionsGenerator -> /workspaces/MoreLINQ/bld/ExtensionsGenerator/bin/Release/MoreLinq.ExtensionsGenerator.dll
  MoreLinq -> /workspaces/MoreLINQ/MoreLinq/bin/Release/net8.0/MoreLinq.dll
  MoreLinq.Test -> /workspaces/MoreLINQ/MoreLinq.Test/bin/Release/net6.0/MoreLinq.Test.dll
  MoreLinq -> /workspaces/MoreLINQ/MoreLinq/bin/Release/net9.0/MoreLinq.dll
  MoreLinq.Test -> /workspaces/MoreLINQ/MoreLinq.Test/bin/Release/net9.0/MoreLinq.Test.dll
  MoreLinq.Test -> /workspaces/MoreLINQ/MoreLinq.Test/bin/Release/net8.0/MoreLinq.Test.dll
  MoreLinq.Test.Aot -> /workspaces/MoreLINQ/MoreLinq.Test.Aot/bin/Release/net8.0/MoreLinq.Test.Aot.dll
  MoreLinq.Test -> /workspaces/MoreLINQ/MoreLinq.Test/bin/Release/net471/MoreLinq.Test.exe
  MoreLinq.Test.Aot -> /workspaces/MoreLINQ/MoreLinq.Test.Aot/bin/Release/net9.0/MoreLinq.Test.Aot.dll

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:50.48
NUnit Adapter 4.6.0.0: Test execution started
Running all tests in /workspaces/MoreLINQ/MoreLinq.Test/bin/Debug/net6.0/MoreLinq.Test.dll
   NUnit3TestExecutor discovered 2387 of 2389 NUnit test cases using Current Discovery mode, Non-Explicit run
PartialSortByIsStable: TODO
PartialSortByIsStable: TODO
NUnit Adapter 4.6.0.0: Test execution complete
  MoreLinq.Test test net6.0 succeeded (17.2s)

Test summary: total: 2389, failed: 0, succeeded: 2385, skipped: 2, duration: 17.1s
Build succeeded in 17.5s

Attachments:
  /workspaces/MoreLINQ/MoreLinq.Test/TestResults/6b08fbae-defe-42ba-90ff-33464944f075/coverage.opencover.xml
NUnit Adapter 4.6.0.0: Test execution started
Running all tests in /workspaces/MoreLINQ/MoreLinq.Test/bin/Release/net6.0/MoreLinq.Test.dll
   NUnit3TestExecutor discovered 2387 of 2389 NUnit test cases using Current Discovery mode, Non-Explicit run
PartialSortByIsStable: TODO
PartialSortByIsStable: TODO
NUnit Adapter 4.6.0.0: Test execution complete
  MoreLinq.Test test net6.0 succeeded (15.2s)

Test summary: total: 2389, failed: 0, succeeded: 2385, skipped: 2, duration: 15.2s
Build succeeded in 15.6s

Attachments:
  /workspaces/MoreLINQ/MoreLinq.Test/TestResults/84f7f4de-a6a1-4a1b-81e8-2987a98faede/coverage.opencover.xml
NUnit Adapter 4.6.0.0: Test execution started
Running all tests in /workspaces/MoreLINQ/MoreLinq.Test/bin/Debug/net8.0/MoreLinq.Test.dll
   NUnit3TestExecutor discovered 2387 of 2389 NUnit test cases using Current Discovery mode, Non-Explicit run
PartialSortByIsStable: TODO
PartialSortByIsStable: TODO
NUnit Adapter 4.6.0.0: Test execution complete
  MoreLinq.Test test net8.0 succeeded (17.2s)

Test summary: total: 2389, failed: 0, succeeded: 2385, skipped: 2, duration: 17.1s
Build succeeded in 17.5s

Attachments:
  /workspaces/MoreLINQ/MoreLinq.Test/TestResults/3e4b5cfa-5877-4b99-8576-fdb2bbad3d71/coverage.opencover.xml
NUnit Adapter 4.6.0.0: Test execution started
Running all tests in /workspaces/MoreLINQ/MoreLinq.Test/bin/Release/net8.0/MoreLinq.Test.dll
   NUnit3TestExecutor discovered 2387 of 2389 NUnit test cases using Current Discovery mode, Non-Explicit run
PartialSortByIsStable: TODO
PartialSortByIsStable: TODO
NUnit Adapter 4.6.0.0: Test execution complete
  MoreLinq.Test test net8.0 succeeded (16.2s)

Test summary: total: 2389, failed: 0, succeeded: 2385, skipped: 2, duration: 16.2s
Build succeeded in 16.6s

Attachments:
  /workspaces/MoreLINQ/MoreLinq.Test/TestResults/2b706dd2-9ada-49bb-9b20-fa7594565a84/coverage.opencover.xml
NUnit Adapter 4.6.0.0: Test execution started
Running all tests in /workspaces/MoreLINQ/MoreLinq.Test/bin/Debug/net9.0/MoreLinq.Test.dll
   NUnit3TestExecutor discovered 2387 of 2389 NUnit test cases using Current Discovery mode, Non-Explicit run
PartialSortByIsStable: TODO
PartialSortByIsStable: TODO
NUnit Adapter 4.6.0.0: Test execution complete
  MoreLinq.Test test net9.0 succeeded (16.9s)

Test summary: total: 2389, failed: 0, succeeded: 2385, skipped: 2, duration: 16.9s
Build succeeded in 17.3s

Attachments:
  /workspaces/MoreLINQ/MoreLinq.Test/TestResults/1fa68d6a-af02-4f64-9959-50a0a363320b/coverage.opencover.xml
NUnit Adapter 4.6.0.0: Test execution started
Running all tests in /workspaces/MoreLINQ/MoreLinq.Test/bin/Release/net9.0/MoreLinq.Test.dll
   NUnit3TestExecutor discovered 2387 of 2389 NUnit test cases using Current Discovery mode, Non-Explicit run
PartialSortByIsStable: TODO
PartialSortByIsStable: TODO
NUnit Adapter 4.6.0.0: Test execution complete
  MoreLinq.Test test net9.0 succeeded (15.5s)

Test summary: total: 2389, failed: 0, succeeded: 2385, skipped: 2, duration: 15.5s
Build succeeded in 15.9s

Attachments:
  /workspaces/MoreLINQ/MoreLinq.Test/TestResults/b3846b4f-0721-48e7-b57d-634b29597008/coverage.opencover.xml
2025-03-15T10:42:39: Arguments
2025-03-15T10:42:39:  -reports:MoreLinq.Test/TestResults/coverage-*.opencover.xml
2025-03-15T10:42:39:  -reporttypes:Html;TextSummary
2025-03-15T10:42:39:  -targetdir:MoreLinq.Test/TestResults/reports
2025-03-15T10:42:41: Writing report file 'MoreLinq.Test/TestResults/reports/index.html'
2025-03-15T10:42:41: Writing report file 'MoreLinq.Test/TestResults/reports/Summary.txt'
2025-03-15T10:42:41: Report generation took 1.9 seconds
Summary
  Generated on: 3/15/2025 - 10:42:41 AM
  Parser: MultiReport (6x OpenCover)
  Assemblies: 1
  Classes: 19
  Files: 113
  Line coverage: 92.7%
  Covered lines: 3197
  Uncovered lines: 251
  Coverable lines: 3448
  Total lines: 15691
  Branch coverage: 91.8% (3965 of 4317)
  Covered branches: 3965
  Total branches: 4317
  Method coverage: 95.7% (868 of 907)
  Covered methods: 868
  Total methods: 907

MoreLinq                                    92.7%
  Delegating.Delegate                      100.0%
  Delegating.DelegatingDisposable           87.5%
  Delegating.DelegatingObserver<T>          85.7%
  MoreLinq.Assume                          100.0%
  MoreLinq.CollectionLike                   85.7%
  MoreLinq.CollectionLike<T>               100.0%
  MoreLinq.Collections.Dictionary<T1, T2>  100.0%
  MoreLinq.Debug                           100.0%
  MoreLinq.Disposable                        0.0%
  MoreLinq.Grouping<T1, T2>                 59.4%
  MoreLinq.ListLike                         88.8%
  MoreLinq.ListLike<T>                     100.0%
  MoreLinq.Lookup<T1, T2>                   58.8%
  MoreLinq.MoreEnumerable                   94.3%
  MoreLinq.PendNode<T>                      98.4%
  MoreLinq.Reactive.Observable             100.0%
  MoreLinq.Reactive.Subject<T>              83.0%
  MoreLinq.ReverseComparer<T>              100.0%
  MoreLinq.SequenceException                50.0%
  MoreLinq net8.0 succeeded (1.0s) → MoreLinq/bin/Release/net8.0/MoreLinq.dll
  MoreLinq.Test.Aot net8.0 succeeded with 1 warning(s) (38.0s) → MoreLinq.Test.Aot/bin/Release/net8.0/linux-x64/publish/
    /_/src/libraries/System.Net.Quic/src/System/Net/Quic/Internal/MsQuicApi.cs(90): warning IL3000: System.Net.Quic.MsQuicApi..cctor(): 'System.Reflection.Assembly.Location.get' always returns an empty string for assemblies embedded in a single-file app. If the path to the app directory is needed, consider calling 'System.AppContext.BaseDirectory'.

Build succeeded with 1 warning(s) in 41.6s
.NET Testing Platform v1.5.0+857a8fb792 (UTC 12/17/2024)

Test run summary: Passed! - MoreLinq.Test.Aot/bin/Release/net8.0/linux-x64/publish/MoreLinq.Test.Aot
  total: 12
  failed: 0
  succeeded: 12
  skipped: 0
  duration: 4ms

  MoreLinq net9.0 succeeded (0.1s) → MoreLinq/bin/Release/net9.0/MoreLinq.dll
  MoreLinq.Test.Aot net9.0 succeeded (39.1s) → MoreLinq.Test.Aot/bin/Release/net9.0/linux-x64/publish/

Build succeeded in 39.7s
.NET Testing Platform v1.5.0+857a8fb792 (UTC 12/17/2024)

Test run summary: Passed! - MoreLinq.Test.Aot/bin/Release/net9.0/linux-x64/publish/MoreLinq.Test.Aot
  total: 12
  failed: 0
  succeeded: 12
  skipped: 0
  duration: 29ms

Copy link

codecov bot commented Mar 15, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 93.30%. Comparing base (9f6dc48) to head (028ae63).
Report is 1 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #1096   +/-   ##
=======================================
  Coverage   93.30%   93.30%           
=======================================
  Files         113      113           
  Lines        3448     3448           
  Branches      971      971           
=======================================
  Hits         3217     3217           
  Misses        215      215           
  Partials       16       16           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@atifaziz atifaziz merged commit 028ae63 into morelinq:master Mar 15, 2025
6 checks passed
@atifaziz atifaziz deleted the dev-container branch March 15, 2025 11:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant